Airship\UnitTests\AirshipTest::testExpandVersion PHP 메소드

testExpandVersion() 공개 메소드

public testExpandVersion ( )
    public function testExpandVersion()
    {
        $this->assertSame(1000100, \Airship\expand_version('1.0.1'));
        $this->assertSame(1010100, \Airship\expand_version('1.1.1'));
        $this->assertSame(1100100, \Airship\expand_version('1.10.1'));
        $this->assertSame(1009900, \Airship\expand_version('1.0.99'));
    }