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

testAssertNotInstanceOfTrue() public method

    public function testAssertNotInstanceOfTrue()
    {
        $this->assertTrue($this->test->assertNotInstanceOf('\\ReflectionClass', new \stdClass()));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('pass', $result['result']);
    }
UnitTest