Files
archived-starters/examples/laravel/tests/Unit/ExampleTest.php
Nick Sorrell c1b2bc1441 Adding laravel (#53)
Co-authored-by: Nick Sorrell <nick@cint.io>
2021-02-22 17:35:49 -08:00

19 lines
255 B
PHP

<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}