PhpBench\Model\SuiteCollection::addSuite PHP Method

addSuite() public method

Add a suite to the collection.
public addSuite ( Suite $suite )
$suite Suite
    public function addSuite(Suite $suite)
    {
        $this->suites[] = $suite;
    }

Usage Example

Ejemplo n.º 1
0
 /**
  * It should add suites.
  */
 public function testAddSuite()
 {
     $collection = new SuiteCollection();
     $collection->addSuite($this->suite1->reveal());
     $this->assertSame([$this->suite1->reveal()], $collection->getSuites());
 }