Files
nl-admin-api/tests/ExampleTest.php

19 lines
349 B
PHP
Raw Normal View History

2013-01-11 15:14:07 -06:00
<?php
2015-05-06 16:58:00 -05:00
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseTransactions;
2015-02-22 20:47:03 -06:00
class ExampleTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testBasicExample()
{
2015-05-06 16:58:00 -05:00
$this->visit('/')
->see('Laravel 5');
2015-02-22 20:47:03 -06:00
}
2014-03-15 10:14:55 +00:00
}