10 lines
161 B
PHP
10 lines
161 B
PHP
<?php
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\contract\Auth;
|
|
|
|
class ContractTest extends TestCase {
|
|
public function testContract() {
|
|
Auth::logout();
|
|
}
|
|
}
|