@Retention(value=RUNTIME)
@Target(value=TYPE)
@Inherited
@Documented
@API(status=MAINTAINED,
since="1.0")
public @interface SelectClasses
@SelectClasses specifies the classes to select when running
a test suite on the JUnit Platform.Suite,
JUnitPlatform,
DiscoverySelectors.selectClass(Class),
DiscoverySelectors.selectClass(String)public abstract java.lang.Class<?>[] value
May be use in conjunction with or instead of names.
@API(status=EXPERIMENTAL,
since="1.10")
public abstract java.lang.String[] names
May be use in conjunction with or instead of value.
This attribute is intended to be used when a class cannot be referenced directly from where this annotation is used — for example, when a class is not visible due to being private or package-private.