Files
auth/tests/ServiceTest.php

11 lines
187 B
PHP
Raw Normal View History

2019-12-26 14:15:26 -03:00
<?php
use PHPUnit\Framework\TestCase;
use App\Service\Auth;
class ServiceTest extends TestCase {
protected $service;
public function setUp() {
$this->service = new Auth();
}
}