1
0
mirror of https://github.com/exane/not-gwent-online synced 2025-06-17 18:54:20 +00:00
Files
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
not-gwent-online/site/server/tests/ExampleTest.php
2015-06-19 18:50:05 +02:00

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');
}
}