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

testAssertNotIdenticalArray() public method

    public function testAssertNotIdenticalArray()
    {
        $expected = array('1', '2', '3');
        $result = array('1', '3', '4');
        $this->test->assertNotIdentical($expected, $result);
        $results = $this->test->results();
        $expected = 'pass';
        $this->assertEqual($expected, $results[0]['result']);
    }
UnitTest