mageekguy\atoum\tests\units\test::testMethodIsIgnored PHP Method

testMethodIsIgnored() public method

public testMethodIsIgnored ( )
    public function testMethodIsIgnored()
    {
        $this->if($test = new emptyTest())->then->exception(function () use($test, &$method) {
            $test->methodIsIgnored($method = uniqid());
        })->isInstanceOf('mageekguy\\atoum\\exceptions\\logic\\invalidArgument')->hasMessage('Test method ' . get_class($test) . '::' . $method . '() does not exist');
    }