source: tests/Feature/ExampleTest.php@ dfae77e

Last change on this file since dfae77e was dfae77e, checked in by Igor Danilovski <igor_danilovski@…>, 22 months ago
  • Initial commit;
  • Property mode set to 100644
File size: 339 bytes
Line 
1<?php
2
3namespace Tests\Feature;
4
5use Illuminate\Foundation\Testing\RefreshDatabase;
6use Tests\TestCase;
7
8class ExampleTest extends TestCase
9{
10 /**
11 * A basic test example.
12 *
13 * @return void
14 */
15 public function test_example()
16 {
17 $response = $this->get('/');
18
19 $response->assertStatus(200);
20 }
21}
Note: See TracBrowser for help on using the repository browser.