diff --git a/tests/phpunit/utils/EnumTraitTest.php b/tests/phpunit/utils/EnumTraitTest.php index aaa16cf77..d58c61d08 100644 --- a/tests/phpunit/utils/EnumTraitTest.php +++ b/tests/phpunit/utils/EnumTraitTest.php @@ -27,9 +27,12 @@ use PHPUnit\Framework\TestCase; class EnumTraitTest extends TestCase{ + /** + * @doesNotPerformAssertions + */ public function testEnumLazyInit() : void{ foreach([TestEnum::ONE(), TestEnum::TWO(), TestEnum::THREE()] as $member){ - self::assertInstanceOf(TestEnum::class, $member); + //NOOP } } }