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