¿Cuál es el propósito de las anotaciones @SmallTest, @MediumTest y @LargeTest en Android?

Soy nuevo en Android y he visto código de ejemplo usando estas anotaciones. Por ejemplo:

@SmallTest
public void testStuff() {
    TouchUtils.tapView(this, anEditTextView);
    sendKeys("H E L P SPACE M E PERIOD");
    assertEquals("help me.", anEditTextView.getText().toString());
}

¿Qué logra esa anotación?