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

testAssertStringNotMatchesFormatTrue() public method

    public function testAssertStringNotMatchesFormatTrue()
    {
        $this->assertTrue($this->test->assertStringNotMatchesFormat('%d', '10.555'));
        $results = $this->test->results();
        $result = array_pop($results);
        $this->assertEqual('pass', $result['result']);
    }
UnitTest