15 lines
209 B
PHP
15 lines
209 B
PHP
<?php
|
|
|
|
class TestExample extends PHPUnit_Framework_TestCase {
|
|
|
|
/**
|
|
* Test that a given condition is met.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testSomethingIsTrue()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
|
|
} |