/tests/Feature/ExampleTest.php
https://bitbucket.org/ErickJoaquin/pruebainformatik · PHP · 21 lines · 12 code · 4 blank · 5 comment · 0 complexity · fe192afe9fd2a6983ff67f5630fa05af MD5 · raw file
- <?php
- namespace Tests\Feature;
- use Tests\TestCase;
- use Illuminate\Foundation\Testing\RefreshDatabase;
- class ExampleTest extends TestCase
- {
- /**
- * A basic test example.
- *
- * @return void
- */
- public function testBasicTest()
- {
- $response = $this->get('/');
- $response->assertStatus(200);
- }
- }