mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-27 17:09:37 +00:00
18 lines
328 B
PHP
Executable File
18 lines
328 B
PHP
Executable File
<?php
|
|
|
|
namespace Sabre\HTTP;
|
|
|
|
class VersionTest extends \PHPUnit_Framework_TestCase {
|
|
|
|
function testString() {
|
|
|
|
$v = Version::VERSION;
|
|
$this->assertEquals(-1, version_compare('1.0.0',$v));
|
|
|
|
$s = Version::STABILITY;
|
|
$this->assertTrue($s == 'alpha' || $s == 'beta' || $s =='stable');
|
|
|
|
}
|
|
|
|
}
|