Template for Junit4 framework doesn't have test prefix anymore
This commit is contained in:
+1
-1
@@ -4,7 +4,7 @@ import org.junit.Test
|
||||
// CONFIGURE_LIBRARY: JUnit@lib/junit-4.12.jar
|
||||
class A {
|
||||
@Test
|
||||
fun testName() {
|
||||
fun name() {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
}
|
||||
+2
-2
@@ -4,8 +4,8 @@ import org.testng.annotations.DataProvider
|
||||
import org.testng.annotations.Test
|
||||
|
||||
@Test class A {
|
||||
@DataProvider(name = "Name")
|
||||
fun Name(): Array<Array<Any>> {
|
||||
@DataProvider(name = "name")
|
||||
fun name(): Array<Array<Any>> {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user