summaryrefslogtreecommitdiff
path: root/test/files/run/junitForwarders/Test.java
blob: 57c4d5b544d8cf72d3aaea1c512e932c2238cc4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package org.junit;

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

@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface Test { }