Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What to do to ignore test case in Android?

Hi i just worked on roblectric test cases where we can use @Ignore to ignore the test cases My question is what we can do in case of android unit test cases for AndroidTestCase instrumentation project, is @Suppress of android test cases is same as Robolectric @Igore? please give me some information, already i visited

Use @Ignore in AndroidTestCase

like image 469
Jitesh Upadhyay Avatar asked Dec 25 '22 11:12

Jitesh Upadhyay


1 Answers

You can use @Suppress on the test case class or individual test methods to suppress test execution.

like image 157
santos Avatar answered Jan 11 '23 02:01

santos