lithium\tests\cases\test\UnitTest::testAssertNotExceptionFailsWithBaseException PHP Method

testAssertNotExceptionFailsWithBaseException() public method

    public function testAssertNotExceptionFailsWithBaseException()
    {
        $this->assertFalse($this->test->assertNotException('Exception', function () {
            throw new \lithium\action\DispatchException('Foo');
        }));
    }
UnitTest