File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,12 @@ You can call `describeBehaviors` to create a list of `DescribedBehavior` objects
23
23
@RunWith(ParameterizedRobolectricTestRunner ::class )
24
24
// You don't need to use @HiltAndroidTest if you don't use Hilt
25
25
@HiltAndroidTest
26
- class ArticleListScreenTest (private val behavior : DescribedBehavior <ArticleListScreenRobot >) {
26
+ class ArticleListScreenTest (
27
+ private val behavior : DescribedBehavior <ArticleListScreenRobot >
28
+ ) {
27
29
28
- // ArticleListScreenRobot is a utility class
29
- // that provides functions to interact with the screen
30
+ // ArticleListScreenRobot is not a part of RoboSpec.
31
+ // I recommend that you provide a Robot or PageObject for easy testing
30
32
@Inject
31
33
lateinit var articleListScreenRobot: ArticleListScreenRobot
32
34
You can’t perform that action at this time.
0 commit comments