NsplTest\ArgsTest::testExpectsWithCustomException PHP Метод

testExpectsWithCustomException() публичный Метод

    public function testExpectsWithCustomException()
    {
        function expectsWithCustomExceptionTest($arg1)
        {
            expects(bool, $arg1, 1, new \BadFunctionCallException('Function NsplTest\\expectsWithCustomExceptionTest() does not like the given input'));
        }
        $this->assertNull(expectsWithCustomExceptionTest('true'));
    }
ArgsTest