1
0
mirror of https://github.com/Microsoft/sql-server-samples.git synced 2025-12-08 14:58:54 +00:00
Files
sql-server-samples/samples/development-frameworks/laravel/tests/HomeTest.php
2016-11-07 11:53:44 -08:00

21 lines
418 B
PHP

<?php
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class HomeTest extends TestCase
{
/**
* A basic functional test example.
*
* @return void
*/
public function testLandingPage()
{
$this->visit('/')
->see('Welcome to Laravel ToDo App');
}
}