tissue/tests/Feature/ExampleTest.php

24 lines
452 B
PHP
Raw Normal View History

2017-08-27 04:44:53 +09:00
<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2019-01-15 00:05:01 +09:00
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Tests\TestCase;
2017-08-27 04:44:53 +09:00
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}