hypothetical/tests/Unit/ExampleTest.php

19 lines
264 B
PHP
Raw Normal View History

<?php
2017-01-26 19:17:37 -05:00
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
2017-01-26 19:17:37 -05:00
* A basic test example.
*
* @return void
*/
2022-05-23 21:01:33 -04:00
public function test_that_true_is_true()
{
2017-01-26 19:17:37 -05:00
$this->assertTrue(true);
}
}