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