diff --git a/src/test/php/lang/reflection/unittest/FromAttributesTest.class.php b/src/test/php/lang/reflection/unittest/FromAttributesTest.class.php index 33a9079..8235639 100755 --- a/src/test/php/lang/reflection/unittest/FromAttributesTest.class.php +++ b/src/test/php/lang/reflection/unittest/FromAttributesTest.class.php @@ -2,9 +2,11 @@ use ReflectionClass, StdClass as Dynamic; use lang\meta\FromAttributes; +use test\verify\Runtime; use test\{Assert, Test, Ignore as Skip}; use util\Comparison as WithComparison; +#[Runtime(php: '>=8.0')] class FromAttributesTest { #[Test] @@ -19,6 +21,7 @@ public function imports() { 'ReflectionClass' => null, 'FromAttributes' => FromAttributes::class, 'Dynamic' => Dynamic::class, + 'Runtime' => Runtime::class, 'Assert' => Assert::class, 'Test' => Test::class, 'WithComparison' => WithComparison::class,