Skip to content Skip to sidebar Skip to footer

How To Restore A Deleted Runconfiguration In Android Studio?

I was trying to deal with a testing-related problem and I followed this advice: https://stackoverflow.com/a/32267762/2576903 Now whenever I try to run my tests, I get prompted to c

Solution 1:

Went to the folder of my current test class, created a new class inserted annotation @RunWith(MockitoJUnitTestRunner.class)

right clicked the newly created class' name -> Run and it created the configuration.

Post a Comment for "How To Restore A Deleted Runconfiguration In Android Studio?"