mageekguy\atoum\runner::debugModeIsEnabled PHP Method

debugModeIsEnabled() public method

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