hypothetical/tests/Unit/ExampleTest.php

20 lines
294 B
PHP
Raw Normal View History

<?php
2017-01-26 19:17:37 -05:00
namespace Tests\Unit;
use Illuminate\Foundation\Testing\RefreshDatabase;
2019-10-31 17:24:53 -04:00
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
2017-01-26 19:17:37 -05:00
* A basic test example.
*
* @return void
*/
2017-01-26 19:17:37 -05:00
public function testBasicTest()
{
2017-01-26 19:17:37 -05:00
$this->assertTrue(true);
}
}