• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.methodselectors;
2 
3 import org.testng.annotations.Test;
4 
5 public class PrioritySampleTest {
6 
7   @Test
alwaysRun()8   public void alwaysRun() {
9     ppp("ALWAYS");
10   }
11 
12   @Test
13   @NoTest
neverRun()14   public void neverRun() {
15     ppp("NEVER");
16   }
17 
ppp(String s)18   private static void ppp(String s) {
19     System.out.println("[PrioritySampleTest] " + s);
20   }
21 }
22