You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
222 B
15 lines
222 B
|
11 years ago
|
<?php
|
||
|
|
|
||
|
|
namespace Sabre\VObject;
|
||
|
|
|
||
|
|
class VersionTest extends \PHPUnit_Framework_TestCase {
|
||
|
|
|
||
|
|
function testString() {
|
||
|
|
|
||
|
|
$v = Version::VERSION;
|
||
|
|
$this->assertEquals(-1, version_compare('2.0.0',$v));
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|