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