mirror of
https://github.com/Microsoft/sql-server-samples.git
synced 2025-12-08 14:58:54 +00:00
21 lines
418 B
PHP
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');
|
|
}
|
|
|
|
}
|