. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Statistics\Service; use Fisharebest\Webtrees\TestCase; /** * Test harness for the class ColorService * * @covers Fisharebest\Webtrees\Statistics\Service\ColorService */ class ColorServiceTest extends TestCase { public function testClass(): void { $this->assertTrue(class_exists(\Fisharebest\Webtrees\Statistics\Service\ColorService::class)); } }