blob: de770e21096d639021f9a2f1f5a6e46315d0a5c0 [file] [log] [blame]
package test.annotationtransformer;
import org.testng.annotations.Test;
/**
* This test will fail unless a time out transformer
* is applied to it.
*
* @author cbeust
*
*/
@Test(timeOut = 1000)
public class AnnotationTransformerClassSampleTest {
public void one() {
try {
Thread.sleep(2000);
// ppp("FINISHED SLEEPING");
}
catch (InterruptedException e) {
// ppp("WAS INTERRUPTED");
// ignore
}
}
private void ppp(String string) {
System.out.println("[Transformer] " + string);
}
}