Update to 193.5233.102 release (KT-35239)

- Mute android specific import tests (KT-35225).
- Mute GradleMultiplatformWizardTest (IDEA-225878).
- Minor update of test data.
This commit is contained in:
Nikolay Krasko
2019-11-28 13:08:58 +03:00
parent fa64b5794b
commit 29fbb8e22f
6 changed files with 50 additions and 4 deletions
+4
View File
@@ -68,6 +68,10 @@ dependencies {
Platform[192].orHigher {
testCompile(intellijDep()) { includeJars("platform-util-ui", "platform-concurrency", "platform-objectSerializer") }
}
Platform[193].orHigher {
testCompile(intellijDep()) { includeJars("platform-ide-util-io") }
}
}
sourceSets {
@@ -165,7 +165,7 @@ class RunnerFactoryWithMuteInDatabase: ParametersRunnerFactory {
}
}
private fun isIgnoredInDatabaseWithLog(child: FrameworkMethod): Boolean {
fun isIgnoredInDatabaseWithLog(child: FrameworkMethod): Boolean {
if (isMutedInDatabase(child.method)) {
System.err.println(mutedMessage(testKey(child.method)))
return true
@@ -174,6 +174,15 @@ private fun isIgnoredInDatabaseWithLog(child: FrameworkMethod): Boolean {
return false
}
fun isIgnoredInDatabaseWithLog(testCase: TestCase): Boolean {
if (isMutedInDatabase(testCase)) {
System.err.println(mutedMessage(testKey(testCase)))
return true
}
return false
}
fun TestCase.runTest(test: () -> Unit) {
(wrapWithMuteInDatabase(this, test) ?: test).invoke()
}