Home | History | Annotate | Download | only in test
      1 package test;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class ReturnValueSampleTest {
      6 
      7   @Test
      8   public int shouldRun() {
      9     return 0;
     10   }
     11 }
     12