Update tests

This commit is contained in:
2021-02-09 17:32:26 -03:00
parent e1cfbbc7ae
commit 35faeff1c9
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
<?php
use PHPUnit\Framework\TestCase;
use App\contract\Auth;
class ContractTest extends TestCase {
public function test
public function testContract() {
Auth::logout();
}
}

View File

@ -3,8 +3,8 @@ use PHPUnit\Framework\TestCase;
use App\Service\Auth;
class ServiceTest extends TestCase {
protected $service;
public function setUp() {
public function testLoad() {
$this->service = new Auth();
$this->assertTrue($this->service != false);
}
}