8 lines
147 B
PHP
8 lines
147 B
PHP
<?php
|
|
class EmptyTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
public function testNothing()
|
|
{
|
|
$this->assertEquals(true, true);
|
|
}
|
|
} |