skip to Main Content

Before Arctic Fox I could run all the unit tests in my project by doing the following: Select a project. Open the context menu on a project, select menu item "run all test."

After Arctic Fox, this same action says something like "no test events."

How to get the "run all tests" feature working with Arctic Fox?

At the start of this TDD.Academy video we discuss this upgrade quirk along with the other Arctic Fox quirk about running JUnit and Roboelectric: https://www.youtube.com/watch?v=MxAjEqJ_LhM

enter image description here

2

Answers


  1. Chosen as BEST ANSWER

    Patch two has fixed the problem. With this patch you'll be able to again use "run tests" in the menubar. enter image description here

    enter image description here


  2. I have the same problem with Android Studio Arctic Fox. Even I created a Hello world project, the option in your screenshot does not work for me. I believe there was some change in the test configuration with gradle test runner in android 4.3. Currently I will use the following as work around

    1. Select one of the test class and right click to run it with Gradle Test Runner
    2. Change the argument as --tests "com.*" in the current configuration to run all the test

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search