Add an example test

This commit is contained in:
Oliver Davies 2019-11-04 23:33:44 +00:00
parent bafd62e248
commit 72ed2d543a

13
tests/ExampleTest.php Normal file
View file

@ -0,0 +1,13 @@
<?php
namespace App\Tests;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
public function testSomething()
{
$this->assertTrue(true);
}
}