// License: GPL. For details, see LICENSE file.
package org.openstreetmap.josm.testutils.annotations;

import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.Documented;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import org.junit.jupiter.api.Tag;

/**
 * Mark this test as a <a href="https://en.wikipedia.org/wiki/Software_performance_testing">Performance</a> test
 * @author Taylor Smock
 */
@Inherited
@Documented
@Retention(RUNTIME)
@Target({TYPE, METHOD})
@Tag("PerformanceTest")
public @interface PerformanceTest {
}
