You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm a spanish developer working in a project and I want to make first Espresso UI tests.
This is my code:
`@RunWith(AndroidJUnit4::class)
class FiltersFragmentTest {
private lateinit var sc: FragmentScenario<FiltersFragment>
@Before
fun setup() {
sc = FragmentScenario.Companion.launchInContainer(FiltersFragment::class.java)
}
}`
Compiler errors due to FiltersFragment not inherits directly from Fragment of AndroidX, but indirectly.
The inheritance chain is FiltersFragment is RPBaseFragment RPBaseFragment is BaseFragment Fragment is androidx.app.Fragment
Any clue how can i avoid this errors or is a bug from the library?
Thanks a lot!!
The text was updated successfully, but these errors were encountered:
Hi! I'm a spanish developer working in a project and I want to make first Espresso UI tests.
This is my code:
`@RunWith(AndroidJUnit4::class)
class FiltersFragmentTest {
}`
Compiler errors due to FiltersFragment not inherits directly from Fragment of AndroidX, but indirectly.
The inheritance chain is
FiltersFragment is RPBaseFragment
RPBaseFragment is BaseFragment
Fragment is androidx.app.Fragment
Any clue how can i avoid this errors or is a bug from the library?
Thanks a lot!!
The text was updated successfully, but these errors were encountered: