aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test-extensions/net/sourceforge/jnlp/annotations/KnownToFail.java
blob: e7c24646eab1f42ec8c4fd2274a98e4c884ebbc6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package net.sourceforge.jnlp.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * <p>
 * This annotation marks a test as a known failure (as opposed to a
 * regression). A test that is a known failure will not hold of a release,
 * nor should developers hold off a fix if they run the unit tests and a
 * test marked as a known failure fails.
 * </p><p>
 * This annotation is meant for adding tests for bugs before the fix is
 * implemented.
 * </p>
 */

@Target({ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface KnownToFail {
    
}