Home | History | Annotate | Download | only in priority
      1 package test.priority;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 
      6 public class WithPrioritySample2Test extends BaseSample {
      7   @Test(priority = -2)
      8   public void first() {
      9     add("first");
     10   }
     11 
     12   @Test(priority = -3)
     13   public void second() {
     14     add("second");
     15   }
     16 
     17 }
     18