I'm used to test my Fragments by launching the Activity containing it in an Espresso test. This has been working pretty nicely and I have been able to control the test environment/execution through some test rules (e.g. OkHttpIdlingResourceRule) that are added to ActivityScenarioRule (or IntentsTestRule) which is then used to launch the Activity.
Now that that I'm moving towards single Activity approach and utilizing also Navigation component I would like to start testing my Fragments in isolation. However, to be able to do that I would need similar capabilities on Fragment testing as do exists in Activity testing. ActivityScenarioRule implements TestRule but FragmentScenario does not and the is no FragmentScenarioRule.
Am I missing something?