tim
03/11/2020, 12:15 PMAntoine Gagnon
03/12/2020, 4:13 PM@TestMethodOrder(OrderAnnotation.class)
tim
03/12/2020, 4:17 PMAntoine Gagnon
03/12/2020, 4:35 PMtim
03/12/2020, 4:58 PMtestImplementation(kotlin("test"))
testImplementation(kotlin("test-junit"))
but as far as i can tell TestMethodOrder isn't available in those packages and you need to add:
testImplementation("org.junit.jupiter:junit-jupiter:5.6.0")
So let me rephrase my question ... is there an easy way to order tests using only Kotlin's recommended testImplementation packages, or do you have to add the jupiter package to have test ordering? If you have to add the jupiter package ... whats the point of adding the kotlin test package in the first instance and why not simply recommend the jupiter pacakge?Antoine Gagnon
03/12/2020, 5:04 PMtim
03/12/2020, 5:24 PM