Scalr\Tests\Util\DateTimeTest::testIncrescentTimeInterval PHP Method

testIncrescentTimeInterval() public method

public testIncrescentTimeInterval ( $date, $curDate, $expected )
    public function testIncrescentTimeInterval($date, $curDate, $expected)
    {
        $this->assertEquals($expected, \Scalr_Util_DateTime::getIncrescentTimeInterval($date, $curDate));
        $date = DateTime::createFromFormat('Y-m-d H:i:s', $date);
        $curDate = DateTime::createFromFormat('Y-m-d H:i:s', $curDate);
        $this->assertEquals($expected, \Scalr_Util_DateTime::getIncrescentTimeInterval($date, $curDate));
    }