14 lines
182 B
PHP
14 lines
182 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Tests;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
|
||
|
class ExampleTest extends TestCase
|
||
|
{
|
||
|
public function testSomething()
|
||
|
{
|
||
|
$this->assertTrue(true);
|
||
|
}
|
||
|
}
|