Fixing robolectric tests by not skipping androidx instrumentation

Summary:
androidx files were not being instrumented properly which meant we would have exceptions thrown by powermock

Robolectric Instrumentation config was changed by hand, the remainder is a codemod using abgs + xargs + sed

Differential Revision: D14323745

fbshipit-source-id: 56aa97dad5d7197f4eb0ba1fdd80b1583bcad6ac
This commit is contained in:
Rick Ratmansky
2019-03-05 14:33:42 -08:00
committed by Facebook Github Bot
parent 393bf8aaad
commit f43f48fce1
31 changed files with 31 additions and 31 deletions
@@ -52,7 +52,7 @@ import static org.mockito.Mockito.when;
@PrepareForTest({Arguments.class, SystemClock.class})
@RunWith(RobolectricTestRunner.class)
@PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "android.*"})
@PowerMockIgnore({"org.mockito.*", "org.robolectric.*", "androidx.*", "android.*"})
public class RootViewTest {
@Rule