[JS IR] Throw exception if test class or test method has explicit parameter

resolves https://youtrack.jetbrains.com/issue/KT-41032
This commit is contained in:
Shagen Ogandzhanian
2020-11-23 15:28:05 +01:00
parent c4a8d1c3a1
commit 2d4e9af289
6 changed files with 273 additions and 22 deletions
+2 -2
View File
@@ -20,7 +20,7 @@ class Outer {
}
inner class Inneer {
@Test fun inneerTest() {
@Test fun innermostTest() {
call(prop + "Inneer")
}
}
@@ -68,7 +68,7 @@ fun box() = checkLog {
call("propInner")
}
suite("Inneer") {
test("inneerTest") {
test("innermostTest") {
call("propInneer")
}
}