setWithTest() public method

public setWithTest ( test $test )
$test test
コード例 #1
0
ファイル: invoking.php プロジェクト: atoum/bdd-extension
 public function setWithTest(atoum\test $test)
 {
     $this->reset();
     $this->test = $test;
     $this->testedClassName = $test->getTestedClassName();
     $this->phpClass->setWith($this->testedClassName);
     return parent::setWithTest($test);
 }
コード例 #2
0
ファイル: error.php プロジェクト: atoum/atoum
 public function setWithTest(test $test)
 {
     $this->setScore($test->getScore());
     return parent::setWithTest($test);
 }
コード例 #3
0
ファイル: call.php プロジェクト: xihewang/atoum
 public function setWithTest(test $test)
 {
     $this->setManager($test->getAsserterCallManager());
     return parent::setWithTest($test);
 }