2019-12-26 14:15:26 -03:00
|
|
|
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use App\Service\Auth;
|
|
|
|
|
|
|
|
class ServiceTest extends TestCase {
|
2021-02-09 17:32:26 -03:00
|
|
|
public function testLoad() {
|
2019-12-26 14:15:26 -03:00
|
|
|
$this->service = new Auth();
|
2021-02-09 17:32:26 -03:00
|
|
|
$this->assertTrue($this->service != false);
|
2019-12-26 14:15:26 -03:00
|
|
|
}
|
|
|
|
}
|