Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00%
0 / 1
0.00%
0 / 4
CRAP
0.00%
0 / 16
Suite
0.00%
0 / 1
0.00%
0 / 4
20
0.00%
0 / 16
 __construct(\PHPUnit_Framework_TestSuite $suite, \PHPUnit_Framework_TestResult $result = null, $settings = array()
0.00%
0 / 1
2
0.00%
0 / 5
 getSuite()
0.00%
0 / 1
2
0.00%
0 / 3
 getResult()
0.00%
0 / 1
2
0.00%
0 / 4
 getSettings()
0.00%
0 / 1
2
0.00%
0 / 4
<?php
namespace Codeception\Event;
use \Symfony\Component\EventDispatcher\Event;
class Suite extends Event
{
protected $suite;
protected $result;
protected $settings;
public function __construct(\PHPUnit_Framework_TestSuite $suite, \PHPUnit_Framework_TestResult $result = null, $settings = array()) {
$this->suite = $suite;
$this->result = $result;
$this->settings = $settings;
}
/**
* @return \PHPUnit_Framework_TestSuite
*/
public function getSuite() {
return $this->suite;
}
/**
* @return \PHPUnit_Framework_TestResult
*/
public function getResult()
{
return $this->result;
}
public function getSettings()
{
return $this->settings;
}
}