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