You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
446 B
26 lines
446 B
@RunWith(AndroidJUnit4.class)
|
|
public final class SampleTest {
|
|
|
|
@Test
|
|
@TestAnnotation1
|
|
@Postsubmit(reason="new test")
|
|
public void annotation1_method1() {
|
|
}
|
|
|
|
@Test
|
|
@TestAnnotation1
|
|
public void annotation1_method2() {
|
|
}
|
|
|
|
@Test
|
|
@TestAnnotation2
|
|
@Postsubmit(reason="new test")
|
|
public void annotation2_method1() {
|
|
}
|
|
|
|
@Test
|
|
@TestAnnotation3
|
|
public void annotation3_method1() {
|
|
}
|
|
}
|