Initial tests
This commit is contained in:
6
tests/ContractTest.php
Normal file
6
tests/ContractTest.php
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?php
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class ContractTest extends TestCase {
|
||||||
|
public function test
|
||||||
|
}
|
10
tests/ServiceTest.php
Normal file
10
tests/ServiceTest.php
Normal 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();
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user