view vendor/sabre/vobject/tests/VObject/VersionTest.php @ 19:49706603be30

begin to add UI support for parameterised labels, e.g. Dates
author Charlie Root
date Mon, 15 Jan 2018 10:29:29 -0500
parents 430dbd5346f7
children
line wrap: on
line source

<?php

namespace Sabre\VObject;

class VersionTest extends \PHPUnit_Framework_TestCase {

    function testString() {

        $v = Version::VERSION;
        $this->assertEquals(-1, version_compare('2.0.0',$v));

    }

}