@@ -16,31 +16,31 @@ class RecyclerViewWaitTest {
1616
1717 @Test
1818 fun testRecyclerViewWaitItemCount () {
19- WaitingAssertion .assertAdapterMinimumItemsCount(R .id.recyclerTest, 2 , 500 )
19+ WaitingAssertion .assertAdapterMinimumItemsCount(R .id.recyclerTest, 5 , 500 )
2020 }
2121
2222 @Test
2323 fun testRecyclerViewWaitItemCountEqual () {
24- WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 3 , MatchOperator .IS , 500 )
24+ WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 6 , MatchOperator .IS , 500 )
2525 }
2626
2727 @Test
2828 fun testRecyclerViewWaitItemCountLessEqual () {
29- WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 3 , MatchOperator .LESS_EQUAL , 500 )
29+ WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 6 , MatchOperator .LESS_EQUAL , 500 )
3030 }
3131
3232 @Test
3333 fun testRecyclerViewWaitItemCountLess () {
34- WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 4 , MatchOperator .LESS , 500 )
34+ WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 7 , MatchOperator .LESS , 500 )
3535 }
3636
3737 @Test
3838 fun testRecyclerViewWaitItemCountGreater () {
39- WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 2 , MatchOperator .GREATER , 500 )
39+ WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 9 , MatchOperator .GREATER , 500 )
4040 }
4141
4242 @Test
4343 fun testRecyclerViewWaitItemCountGreaterEqual () {
44- WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 3 , MatchOperator .GREATER_EQUAL , 500 )
44+ WaitingAssertion .assertRecyclerAdapterItemsCount(R .id.recyclerTest, 10 , MatchOperator .GREATER_EQUAL , 500 )
4545 }
4646}
0 commit comments