Android中的@SmallTest,@MediumTest和@LargeTest注解的目的是什么?
例如:
1 2 3 4 5 6 |
@SmallTest public void testStuff() { TouchUtils.tapView(this, anEditTextView); sendKeys("H E L P SPACE M E PERIOD"); assertEquals("help me.", anEditTextView.getText().toString()); } |
参考下图: