Home | History | Annotate | Download | only in verify
      1 package test.tmp.verify;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class VerifyTest {
      6 
      7   @Test
      8   public void f2() {
      9     System.out.println("f2()");
     10   }
     11 
     12   @Test
     13   public void f1() {
     14     System.out.println("f1()");
     15   }
     16 
     17   @Verify
     18   public void verify() {
     19 //    throw new RuntimeException();
     20 //    System.out.println("verify()");
     21   }
     22 }
     23