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

testAssertNotIdentical() public method

    public function testAssertNotIdentical()
    {
        $expected = true;
        $result = 1;
        $this->test->assertNotIdentical($expected, $result);
        $results = $this->test->results();
        $expected = 'pass';
        $this->assertEqual($expected, $results[0]['result']);
    }
UnitTest