checkExact() public static method

public static checkExact ( string $version ) : boolean
$version string
return boolean
Example #1
0
 public function testCheckExact()
 {
     $version = "0.99.9";
     $this->assertFalse(DbPatch_Core_Version::checkExact($version));
     $version = DbPatch_Core_Version::VERSION;
     $this->assertTrue(DbPatch_Core_Version::checkExact($version));
 }