Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 350 Bytes

test_-_espresso,_rxpresso.md

File metadata and controls

17 lines (12 loc) · 350 Bytes

Test - espresso, rxpresso

Ui 操作測試函式庫

RxPresso

rxPresso.given(mockedRepo.getUser("id"))
           .withEventsFrom(Observable.just(new User("some name")))
           .expect(any(User.class))
           .thenOnView(withText("some name"))
           .perform(click());

See Also