main
|
Last change
on this file since 768f473 was c454c0f, checked in by bube-ristovska <ristovska725@…>, 20 months ago |
|
First commit
|
-
Property mode
set to
100644
|
|
File size:
352 bytes
|
| Line | |
|---|
| 1 | <?php
|
|---|
| 2 |
|
|---|
| 3 | namespace Tests\Feature;
|
|---|
| 4 |
|
|---|
| 5 | // use Illuminate\Foundation\Testing\RefreshDatabase;
|
|---|
| 6 | use Tests\TestCase;
|
|---|
| 7 |
|
|---|
| 8 | class ExampleTest extends TestCase
|
|---|
| 9 | {
|
|---|
| 10 | /**
|
|---|
| 11 | * A basic test example.
|
|---|
| 12 | */
|
|---|
| 13 | public function test_the_application_returns_a_successful_response(): void
|
|---|
| 14 | {
|
|---|
| 15 | $response = $this->get('/');
|
|---|
| 16 |
|
|---|
| 17 | $response->assertOk();
|
|---|
| 18 | }
|
|---|
| 19 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.