ro
45f857e9b8
Removed the Slim Framework from the codebase and installed the latest Laravel version to be the new foundation for the project moving forward. Code from the old version will now be ported to the new version.
17 lines
243 B
PHP
17 lines
243 B
PHP
<?php
|
|
|
|
namespace Tests\Unit;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*/
|
|
public function test_that_true_is_true(): void
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|