Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. @Test
  2. fun shouldRenderBrandStyle() {
  3. val state = givenAnyState { style = BRAND }
  4. val view = givenAnyView()
  5.  
  6. view.render(state)
  7.  
  8. compareScreenshot(view, height)
  9. }
  10.  
  11. @Test
  12. fun shouldRenderAlertStyle() {
  13. val state = givenAnyState { style = ALERT }
  14. val view = givenAnyView()
  15.  
  16. view.render(state)
  17.  
  18. compareScreenshot(view, height)
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement