1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
<?php
declare(strict_types=1);
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tests\CarbonInterval;
use Carbon\CarbonInterval;
use DateInterval;
use DateTime;
use InvalidArgumentException;
use Tests\AbstractTestCase;
class ToDateIntervalTest extends AbstractTestCase
{
public function testConvertToDateInterval()
{
$interval = CarbonInterval::days(5)->hours(3)->minutes(50)->microseconds(123456)->invert()->toDateInterval();
$this->assertSame(DateInterval::class, \get_class($interval));
$this->assertSame(1, $interval->invert);
$this->assertSame(5, $interval->d);
$this->assertSame(3, $interval->h);
$this->assertSame(50, $interval->i);
$this->assertSame(0, $interval->s);
$this->assertSame(0.123456, $interval->f);
}
public function testCastToDateInterval()
{
$interval = CarbonInterval::days(5)->hours(3)->minutes(50)->microseconds(123456)->invert()->cast(DateInterval::class);
$this->assertSame(DateInterval::class, \get_class($interval));
$this->assertSame(1, $interval->invert);
$this->assertSame(5, $interval->d);
$this->assertSame(3, $interval->h);
$this->assertSame(50, $interval->i);
$this->assertSame(0, $interval->s);
$this->assertSame(0.123456, $interval->f);
}
public function testBadCast()
{
$this->expectExceptionObject(new InvalidArgumentException(
'DateTime is not a sub-class of DateInterval.'
));
CarbonInterval::days(5)->hours(3)->minutes(50)->microseconds(123456)->invert()->cast(DateTime::class);
}
}
|