11 lines
216 B
PHP
11 lines
216 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Service\Auth;
|
|
|
|
class ServiceTest extends TestCase {
|
|
public function testLoad() {
|
|
$this->service = new Auth();
|
|
$this->assertTrue($this->service != false);
|
|
}
|
|
}
|