Cassandra\TimeTest::testConstruct PHP Method

testConstruct() public method

public testConstruct ( )
    public function testConstruct()
    {
        $time = new Time(0);
        $this->assertEquals((string) $time, "0");
        $time = new Time(42);
        $this->assertEquals((string) $time, "42");
        $time = new Time("86399999999999");
        $this->assertEquals((string) $time, "86399999999999");
    }