mirror of
https://github.com/pelican-dev/panel.git
synced 2026-03-01 11:21:31 +03: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');
|
||
|
|
}
|
||
|
|
}
|