FIR IDE: restore fir ide spec tests with shorten test class name to make TC happy

Otherwise, TC will complain about too long fq test method names
This commit is contained in:
Ilya Kirillov
2021-06-07 13:49:06 +02:00
committed by TeamCityServer
parent cc169613c1
commit 74567f4b02
2 changed files with 8036 additions and 4 deletions
@@ -1115,18 +1115,18 @@ fun main(args: Array<String>) {
}
}
/*
testGroup("idea/idea-frontend-fir/idea-fir-low-level-api/tests", testDataRoot = GeneralConfiguration.SPEC_TESTDATA_PATH
) {
testClass<AbstractDiagnosisCompilerTestDataSpecTest> {
testClass<AbstractDiagnosisCompilerTestDataSpecTest>(suiteTestClassName = "FirIdeSpecTest") {
model(
"diagnostics",
excludeDirs = listOf("helpers") + detectDirsWithTestsMapFileOnly("diagnostics"),
excludedPattern = excludedFirTestdataPattern
excludedPattern = excludedFirTestdataPattern,
)
}
}
*/
testGroup("idea/idea-fir/tests", "idea") {
testClass<AbstractFirHighlightingTest> {