comparison vendor/sabre/vobject/tests/VObject/VersionTest.php @ 7:430dbd5346f7

vendor sabre as distributed
author Charlie Root
date Sat, 13 Jan 2018 09:06:10 -0500
parents
children
comparison
equal deleted inserted replaced
6:cec75ba50afc 7:430dbd5346f7
1 <?php
2
3 namespace Sabre\VObject;
4
5 class VersionTest extends \PHPUnit_Framework_TestCase {
6
7 function testString() {
8
9 $v = Version::VERSION;
10 $this->assertEquals(-1, version_compare('2.0.0',$v));
11
12 }
13
14 }