Files
im-demo-server/tests/Feature/ExampleTest.php

24 lines
452 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
2016-11-29 15:48:33 -06:00
namespace Tests\Feature;
use Tests\TestCase;
2015-05-06 16:58:00 -05:00
use Illuminate\Foundation\Testing\WithoutMiddleware;
2015-05-28 10:15:09 -05:00
use Illuminate\Foundation\Testing\DatabaseMigrations;
2015-05-06 16:58:00 -05:00
use Illuminate\Foundation\Testing\DatabaseTransactions;
2015-02-22 20:47:03 -06:00
class ExampleTest extends TestCase
{
/**
2016-11-29 15:48:33 -06:00
* A basic test example.
2015-02-22 20:47:03 -06:00
*
* @return void
*/
2016-11-29 15:48:33 -06:00
public function testBasicTest()
2015-02-22 20:47:03 -06:00
{
2016-12-05 12:40:03 -06:00
$response = $this->get('/');
2016-12-05 13:22:14 -06:00
$response->assertStatus(200);
2015-02-22 20:47:03 -06:00
}
2014-03-15 10:14:55 +00:00
}