001package dk.netarkivet.common.utils;
002
003/** <p>
004 * Marker interface to identify tests as taking a long time to run. This is used to disable slow tests as part of the
005 * default <code>mvn test</code> phase. Slow test are included by using the <code>fullTest</code> profile.
006 * </p>
007 * See general netarchivesuite pom for details.
008 */
009public interface SlowTest {
010}