/* * Copyright 2015-2017 the original author or authors. * * All rights reserved. This program and the accompanying materials are * made available under the terms of the Eclipse Public License v1.0 which * accompanies this distribution and is available at * * http://www.eclipse.org/legal/epl-v10.html */ package org.junit.platform.suite.api; import static org.junit.platform.commons.meta.API.Usage.Maintained; import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.junit.platform.commons.meta.API; /** * {@code @SelectPackages} specifies the names of packages to <em>select</em> * when running a test suite on the JUnit Platform. * * <h4>JUnit 4 Suite Support</h4> * <p>Test suites can be run on the JUnit Platform in a JUnit 4 environment via * {@code @RunWith(JUnitPlatform.class)}. * * @since 1.0 * @see SelectClasses * @see org.junit.platform.engine.discovery.PackageSelector * @see org.junit.platform.runner.JUnitPlatform */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited @Documented @API(Maintained) public @interface SelectPackages { /** * One or more fully qualified package names to select. */ String[] value(); }