15 lines
195 B
PHP
15 lines
195 B
PHP
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function it_passes()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|