Move visualizer black box tests generator to separate class
This commit is contained in:
committed by
TeamCityServer
parent
94240f7b21
commit
2a5153f0fd
@@ -0,0 +1,20 @@
|
||||
/*
|
||||
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.visualizer
|
||||
|
||||
import org.jetbrains.kotlin.test.generators.generateTestGroupSuiteWithJUnit5
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
System.setProperty("java.awt.headless", "true")
|
||||
|
||||
generateTestGroupSuiteWithJUnit5(args) {
|
||||
testGroup("compiler/visualizer/tests-gen", "compiler/testData") {
|
||||
testClass<AbstractVisualizerBlackBoxTest>() {
|
||||
model("codegen/box")
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user