Menu
Who Do Is
  • Home
  • What
  • How
  • Is
  • Can
  • Are
  • Does
  • Do
  • Why
  • Who
  • Where
  • Which
  • Which
  • Should
  • Will
  • When
  • What’s
  • Did
Who Do Is

[ANSWERED] How can I select a specific set of tests (not in same package) to run in Android Studio?

Posted on November 14, 2022

Solution 1 :

I solved the problem by creating an annotation (can be applied to a test class or to a test method), and having the test runner filter on that annotation.

Define Test Annotation

/**
 * This annotation is used to mark tests for devices with a physical
 * keyboard (Chromebook).
 *  
 * The annotation can be applied to test classes, and to individual
 * tests.
 */
@Target({ElementType.TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
public @interface PhysicalKeyboardTest {
}

Use Test Annotation

@Test
@PhysicalKeyboardTest
public void enterKey_shouldWork() {
    ...
}

Run Configuration – Single Device

In the Run Configuration dialog, under “Android Instrumented Tests”

  • Make a copy of “All Android Tests” configuration
  • Rename copy to “Physical Keyboard Tests”
  • In “Instrumentation arguments”
    • Name field: annotation
    • Value field: com.path-to-annotation-def.PhysicalKeyboardTest

The “Physical Keyboard Tests” run configuration will run all tests annotated with “@PhysicalKeyboardTest”, anywhere in the test suite.

Run Configuration – All Connected Devices

In the Run Configuration dialog, under “Gradle”

  • Add a configuration:
    • Name: Physical Keyboard Tests (all devices)
    • Gradle project: select your app
    • Tasks: connectedCheck
    • Arguments: -Pandroid.testInstrumentationRunnerArguments.annotation=com.path-to-your-annotation-def.PhysicalKeyboardTest

The “Physical Keyboard Tests (all devices)” run configuration will run all tests annotated with “@PhysicalKeyboardTest”, anywhere in the test suite, on all of the connected devices.

Problem :

Using Run Configurations you can specify groups of tests to run, provided that they are in the same class or the same package. However, I want to specify a group of tests, where the tests are sprinkled throughout my test suite.

I was not able to find specific instructions for how to do this. I figured out a way, and thought I would share it here, in case anyone else finds it useful.

READ  [ANSWERED] Migrating Android project with proguard to R8, missing rt.java file, Android Studio 4.2
Powered by Inline Related Posts

Recent Posts

  • How can I play with my cat without toys?
  • What is a bag pipe band called?
  • Are Honda Civics actually fast?
  • Are Yankee candles toxic?
  • How do I pair my Michael Kors smartwatch with my Android?

Recent Comments

No comments to show.

Archives

  • January 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022

Categories

  • ¿Cómo
  • ¿Cuál
  • ¿Cuántas
  • ¿Cuánto
  • ¿Que
  • ¿Quién
  • 90” and 108” so you may have to round up to the nearest size.
  • and delete any Spotify folders from it. Once this is done
  • Android
  • Are
  • At
  • Bei
  • blink
  • C'est
  • Can
  • carbs
  • Comment
  • Did
  • Do
  • Does
  • During
  • For
  • Has
  • How
  • In
  • Is
  • Ist
  • Kann
  • Können
  • nouveau
  • On
  • or 108 inches.2020-08-03
  • Où
  • owning
  • Pourquoi
  • Puis-je
  • Quand
  • Quante
  • Quel
  • Quelle
  • Quelles
  • Quels
  • Qui
  • Should
  • Sind
  • Sollte
  • spiritual
  • tap the downward-facing arrow on the top left. A downward-facing arrow will appear underneath each song in the album; they'll turn green as the download completes.2020-07-28
  • Uncategorized
  • Wann
  • Warum
  • Was
  • Welche
  • Welcher
  • Welches
  • Welke
  • Wer
  • Were
  • What
  • What's
  • When
  • Where
  • Which
  • Who
  • Whose
  • Why
  • Wie
  • Will
  • Wo
  • Woher
  • you will receive two curtains each with the same measurements of width 66"" (168cm) x drop 54""(137cm).
  • you'll see a green downward-facing arrow next to each song.2021-02-26
©2023 Who Do Is | Powered by SuperbThemes & WordPress