Initial tests

This commit is contained in:
2019-12-26 14:15:26 -03:00
parent a9b235d3e1
commit e1cfbbc7ae
2 changed files with 16 additions and 0 deletions

6
tests/ContractTest.php Normal file
View File

@ -0,0 +1,6 @@
<?php
use PHPUnit\Framework\TestCase;
class ContractTest extends TestCase {
public function test
}

10
tests/ServiceTest.php Normal file
View File

@ -0,0 +1,10 @@
<?php
use PHPUnit\Framework\TestCase;
use App\Service\Auth;
class ServiceTest extends TestCase {
protected $service;
public function setUp() {
$this->service = new Auth();
}
}