17 lines
237 B
PHP
17 lines
237 B
PHP
<?php
|
|
|
|
class ExampleTest extends TestCase
|
|
{
|
|
/**
|
|
* A basic functional test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicExample()
|
|
{
|
|
$true = true;
|
|
|
|
$this->assertTrue($true);
|
|
}
|
|
}
|