@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
@Documented
@API(status=STABLE,
since="1.10")
public @interface DisableParentConfigurationParameters
By default a suite discovers tests using the configuration parameters
explicitly configured via @ConfigurationParameter
and the configuration parameters from the discovery request that was used to
discover the suite.
Annotating a suite with this annotation disables the latter source so that only explicit configuration parameters are taken into account.
ConfigurationParameter,
Suite