mirror of
https://github.com/laravel/laravel.git
synced 2025-02-20 11:53:14 +08:00
17 lines
281 B
PHP
17 lines
281 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->status());
|
|
}
|
|
}
|