Advertisement
Guest User

Application test stuff

a guest
Apr 26th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.21 KB | None | 0 0
  1.     void "test something"() {
  2.        when:
  3.        def author = Author.findById(authorId)
  4.  
  5.         then:
  6.         author != null
  7.         !Author.findAll().empty
  8.  
  9.         where:
  10.         authorId = 1
  11.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement