getPhpPath() 공개 메소드

public getPhpPath ( )
예제 #1
0
파일: runner.php 프로젝트: ssgonchar/atoum
 public function testSetPhpPath()
 {
     $this->if($runner = new testedClass())->then->object($runner->setPhpPath($phpPath = uniqid()))->isIdenticalTo($runner)->string($runner->getPhpPath())->isIdenticalTo($phpPath);
 }
예제 #2
0
파일: runner.php 프로젝트: ronan-gloo/atoum
 public function testSetPhpPath()
 {
     $this->if($runner = new atoum\runner())->then->object($runner->setPhpPath($phpPath = uniqid()))->isIdenticalTo($runner)->string($runner->getPhpPath())->isIdenticalTo($phpPath)->object($runner->setPhpPath($phpPath = rand(1, PHP_INT_MAX)))->isIdenticalTo($runner)->string($runner->getPhpPath())->isIdenticalTo((string) $phpPath);
 }