@SmallTest, @MediumTest, and @LargeTest deprecated on Android

Previously these annotations were in the android.test.suitebuilder.annotation package. As of API 24, they were moved to the android.support.test.filters package (documented here for @MediumTest. @SmallTest and @LargeTest are the same).

To use the new versions:

  1. Be sure you’re using import android.support.test.filters.<size>Test at the top of your test file.
  2. Ensure your test runner and rules versions are using at least version 0.5 in your build.gradle file:

    androidTestCompile 'com.android.support.test:runner:0.5'
    androidTestCompile 'com.android.support.test:rules:0.5'

Leave a Comment