mirror of
https://github.com/exane/not-gwent-online
synced 2025-06-17 18:54:20 +00:00
assets
client
public
server
site
client
public
server
app
bootstrap
config
database
storage
tests
ExampleTest.php
TestCase.php
.env.example
artisan
composer.json
composer.lock
phpspec.yml
phpunit.xml
server.php
test
.gitignore
gulpfile.js
package.json
20 lines
403 B
PHP
Executable File
20 lines
403 B
PHP
Executable File
<?php
|
|
|
|
use Illuminate\Foundation\Testing\WithoutMiddleware;
|
|
use Illuminate\Foundation\Testing\DatabaseMigrations;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$this->visit('/')
|
|
->see('Laravel 5');
|
|
}
|
|
}
|