hypothetical/tests/Unit/ExampleTest.php

17 lines
243 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.
*/
2023-03-13 17:33:19 -04:00
public function test_that_true_is_true(): void
{
2017-01-26 19:17:37 -05:00
$this->assertTrue(true);
}
}