You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
343 B
19 lines
343 B
<?php
|
|
|
|
namespace Tests\Unit\Helpers;
|
|
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Date Difference Helper Unit Test.
|
|
*
|
|
* @author Nafies Luthfi <nafiesL@gmail.com>
|
|
*/
|
|
class DateDifferenceTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function date_difference_function_exists()
|
|
{
|
|
$this->assertTrue(function_exists('dateDifference'));
|
|
}
|
|
}
|