Files
auth/tests/ContractTest.php

10 lines
161 B
PHP
Raw Normal View History

2019-12-26 14:15:26 -03:00
<?php
use PHPUnit\Framework\TestCase;
2021-02-09 17:32:26 -03:00
use App\contract\Auth;
2019-12-26 14:15:26 -03:00
class ContractTest extends TestCase {
2021-02-09 17:32:26 -03:00
public function testContract() {
Auth::logout();
}
2019-12-26 14:15:26 -03:00
}