Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. # Groovy DSL
  2. ```
  3. testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: '5.4.1'
  4. testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: '5.4.1'
  5. testCompile group: 'org.junit.platform', name: 'junit-platform-engine', version: '1.4.1'
  6. testCompile group: 'org.junit.platform', name: 'junit-platform-launcher', version: '1.4.1'
  7. testCompile group: 'org.assertj', name: 'assertj-core', version: '3.12.2'
  8. ```
  9.  
  10. # Kotlin DSL
  11. ```
  12. testCompile("junit", "junit", "4.12")
  13. testCompile("org.junit.jupiter", "junit-jupiter-api", "5.2.0")
  14. testCompile("org.junit.jupiter", "junit-jupiter-engine", "5.2.0")
  15. testCompile("org.junit.platform", "junit-platform-engine", "1.4.1")
  16. testCompile("org.junit.platform", "junit-platform-launcher", "1.4.1")
  17. testCompile("org.assertj", "assertj-core", "3.12.2")
  18. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement