lithium\tests\cases\test\UnitTest::testAssertStringMatchesFormatTrue PHP Méthode

testAssertStringMatchesFormatTrue() public méthode

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