Phalcon\Test\Unit\VersionTest::testVersionGetId PHP Method

testVersionGetId() public method

Tests the getId()
Since: 2014-09-04
Author: 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();
        });
    }