Files
crewsportswear/tests/ExampleTest.php
Frank John Begornia 562f03488a Initial Commit
2019-03-06 20:32:31 +08:00

18 lines
254 B
PHP

<?php
class ExampleTest extends TestCase {
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
$response = $this->call('GET', '/');
$this->assertEquals(200, $response->getStatusCode());
}
}