. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Elements; /** * Test harness for the class GenerationsOfAncestors * * @covers \Fisharebest\Webtrees\Elements\AbstractElement * @covers \Fisharebest\Webtrees\Elements\GenerationsOfAncestors */ class GenerationsOfAncestorsTest extends AbstractElementTestCase { /** * Standard tests for all elements. */ public static function setupBeforeClass(): void { parent::setUpBeforeClass(); self::$element = new GenerationsOfAncestors('label'); } }