mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-23 01:22:30 +01:00
17 lines
240 B
PHP
17 lines
240 B
PHP
<?php
|
|
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$this->visit('/')
|
|
->see('Laravel 5');
|
|
}
|
|
}
|