Phalcon\Test\Unit\VersionTest::testVersionGetId PHP 메소드

testVersionGetId() 공개 메소드

Tests the getId()
부터: 2014-09-04
저자: Nikolaos Dimopoulos ([email protected])
public testVersionGetId ( )
    public function testVersionGetId()
    {
        $this->specify("getId() does not return a string", function () {
            $actual = Version::getId();
            expect(is_string($actual))->true();
        });
    }