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

testVersionGet() public method

Tests the get
Since: 2014-09-04
Author: Nikolaos Dimopoulos ([email protected])
public testVersionGet ( )
    public function testVersionGet()
    {
        $this->specify("get() does not return a string", function () {
            $actual = Version::get();
            expect(is_string($actual))->true();
        });
    }