Sono nuovo su Android e ho visto codice di esempio che utilizza queste annotazioni. Per esempio:
@SmallTest
public void testStuff() {
TouchUtils.tapView(this, anEditTextView);
sendKeys("H E L P SPACE M E PERIOD");
assertEquals("help me.", anEditTextView.getText().toString());
}
Che cosa fa quell'annotazione?
adb shell am instrument -w -e size small com.android.foo/android.support.test.runner.AndroidJUnitRunner
; grazie