From a98d1d2b11911a162be78e1a031e39452ccb991b Mon Sep 17 00:00:00 2001 From: Dmitriy Dolovov Date: Fri, 3 Dec 2021 00:44:55 +0300 Subject: [PATCH] [Native][tests] Minor. Rename test infra-related tests for easier distinguishing --- ...mpressedNamesTest.kt => TestInfra_CompressedNamesTest.kt} | 3 ++- ...GlobsExpansionTest.kt => TestInfra_GlobsExpansionTest.kt} | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) rename native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/{CompressedNamesTest.kt => TestInfra_CompressedNamesTest.kt} (98%) rename native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/{GlobsExpansionTest.kt => TestInfra_GlobsExpansionTest.kt} (96%) diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/CompressedNamesTest.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_CompressedNamesTest.kt similarity index 98% rename from native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/CompressedNamesTest.kt rename to native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_CompressedNamesTest.kt index 27afb7e94fe..7cba59f247f 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/CompressedNamesTest.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_CompressedNamesTest.kt @@ -16,7 +16,8 @@ import org.junit.jupiter.api.Assertions.assertTrue import org.junit.jupiter.api.Test import kotlin.coroutines.Continuation -class CompressedNamesTest { +@Suppress("ClassName") +class TestInfra_CompressedNamesTest { @Test fun targetNameCompression() { val knownTargets: Set = KonanTarget.predefinedTargets.values.toSet() diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/GlobsExpansionTest.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_GlobsExpansionTest.kt similarity index 96% rename from native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/GlobsExpansionTest.kt rename to native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_GlobsExpansionTest.kt index c47d2bccf48..5b3ce28f89c 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/GlobsExpansionTest.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/TestInfra_GlobsExpansionTest.kt @@ -15,12 +15,13 @@ import org.junit.jupiter.api.fail import java.io.File import kotlin.io.path.createTempDirectory -class GlobsExpansionTest { +@Suppress("ClassName") +class TestInfra_GlobsExpansionTest { private lateinit var testDir: File @BeforeEach fun setUp() { - testDir = createTempDirectory(GlobsExpansionTest::class.java.sanitizedName).toFile() + testDir = createTempDirectory(TestInfra_GlobsExpansionTest::class.java.sanitizedName).toFile() } @Test