mirror of
https://github.com/alexjustesen/speedtest-tracker.git
synced 2026-06-23 06:30:08 +00:00
b29290913a
Co-authored-by: Shift <shift@laravelshift.com>
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);
|
|
}
|
|
}
|