Write tests for dynamic versions with ivy and maven resolvers
and refactor tests #KT-27051 fixed this commit is just a confirmation of the fix: either it worked from the beginning, or was fixed by some unrelated change
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
@file:DependsOn("junit:junit:(4.11,4.12]")
|
||||
|
||||
org.junit.Assert.assertThrows(NullPointerException::class.java) {
|
||||
throw null!!
|
||||
}
|
||||
|
||||
println("Hello, World!")
|
||||
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
@file:DependsOn("junit:junit:(4.12,5.0)")
|
||||
|
||||
org.junit.Assert.assertThrows(NullPointerException::class.java) {
|
||||
throw null!!
|
||||
}
|
||||
|
||||
println("Hello, World!")
|
||||
|
||||
Reference in New Issue
Block a user