hypothetical/tests/Unit/ExampleTest.php

19 lines
254 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
*/
2021-04-20 17:11:13 -04:00
public function test_example()
{
2017-01-26 19:17:37 -05:00
$this->assertTrue(true);
}
}