mageekguy\atoum\runner::debugModeIsEnabled PHP 메소드

debugModeIsEnabled() 공개 메소드

public debugModeIsEnabled ( )
    public function debugModeIsEnabled()
    {
        return $this->debugMode;
    }

Usage Example

예제 #1
0
파일: runner.php 프로젝트: atoum/atoum
 public function testDisallowUsageOfUndefinedMethodInMock()
 {
     $this->if($runner = new testedClass())->then->object($runner->disallowUsageOfUndefinedMethodInMock())->isIdenticalTo($runner)->boolean($runner->usageOfUndefinedMethodInMockAreAllowed())->isFalse()->object($runner->disallowUsageOfUndefinedMethodInMock())->isIdenticalTo($runner)->boolean($runner->debugModeIsEnabled())->isFalse();
 }
All Usage Examples Of mageekguy\atoum\runner::debugModeIsEnabled
runner