hypothetical/tests/Feature/ExampleTest.php

22 lines
340 B
PHP
Raw Normal View History

<?php
2017-01-26 19:17:37 -05:00
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
class ExampleTest extends TestCase
{
/**
2017-01-26 19:17:37 -05:00
* A basic test example.
*
* @return void
*/
2017-01-26 19:17:37 -05:00
public function testBasicTest()
{
2017-01-26 19:17:37 -05:00
$response = $this->get('/');
$response->assertStatus(200);
}
}