. */ namespace Fisharebest\Webtrees; /** * Test harness for the class Stats */ class StatsTest extends \Fisharebest\Webtrees\TestCase { /** * Prepare the environment for these tests * * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); } /** * Test that the class exists * * @return void */ public function testClassExists() { $this->assertTrue(class_exists('\Fisharebest\Webtrees\Stats')); } }