mirror of
https://github.com/ZorgCC/lumen-generators.git
synced 2024-12-28 14:55:29 +03:00
16 lines
225 B
PHP
16 lines
225 B
PHP
<?php
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$this->visit('/')
|
|
->see('Lumen.');
|
|
}
|
|
}
|