1@RunWith(AndroidJUnit4.class)
2public final class SampleTest {
3
4    @Test
5    @TestAnnotation1
6    @Postsubmit(reason="new test")
7    public void annotation1_method1() {
8    }
9
10    @Test
11    @TestAnnotation1
12    public void annotation1_method2() {
13    }
14
15    @Test
16    @TestAnnotation2
17    @Postsubmit(reason="new test")
18    public void annotation2_method1() {
19    }
20
21    @Test
22    @TestAnnotation3
23    public void annotation3_method1() {
24    }
25}
26