1 package net.sf.twip;
2
3 import java.lang.annotation.*;
4
5 /**
6 * Annotate your JUnit tests with {@link TwiP} and with this to extend the functionality of JUnit.
7 *
8 * @see TwipExtension
9 */
10 @Inherited
11 @Retention(RetentionPolicy.RUNTIME)
12 public @interface TwipExtensions {
13
14 Class<? extends TwipExtension>[] value();
15 }