Anybody get ```Started running tests Test running ...
# android
d
Anybody get
Copy code
Started running tests
Test running failed: Instrumentation run failed due to 'java.lang.IllegalAccessError'
Empty test suite.
in espresso tests? Maybe I have something wrong here?
Copy code
@RunWith(AndroidJUnit4::class)
class NewWazeTest {
	@get:Rule
	val rule = ActivityTestRule<FirstLoginActivity>(FirstLoginActivity::class.java)

	@get:Rule
	val intentsTestRule = IntentsTestRule<CheckServerActivity>(CheckServerActivity::class.java)
d
I must expose the rule as a @JvmField to make the tests work, no luck so far with @get:Rule
d
That's the error you get if not? Or I have two issues here?