mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-23 03:12:12 +00:00
18 lines
267 B
PHP
Executable File
18 lines
267 B
PHP
Executable File
<?php
|
|
|
|
class ExampleTest extends TestCase {
|
|
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$crawler = $this->client->request('GET', '/');
|
|
|
|
$this->assertTrue($this->client->getResponse()->isOk());
|
|
}
|
|
|
|
}
|