idea: cleanup code

This commit is contained in:
Dmitry Gridin
2019-12-13 22:11:25 +07:00
parent e77d8657f4
commit 8dbbd64beb
897 changed files with 13161 additions and 18514 deletions
@@ -13,8 +13,7 @@ import org.junit.runner.RunWith
@RunWith(JUnit3WithIdeaConfigurationRunner::class)
class CompatibilityVerifierVersionComparisonTest : LightPlatformTestCase() {
fun testKotlinVersionParsing() {
val version = KotlinPluginVersion.parse("1.2.40-dev-193-Studio3.0-1")
?: throw AssertionError("Version should not be null")
val version = KotlinPluginVersion.parse("1.2.40-dev-193-Studio3.0-1") ?: throw AssertionError("Version should not be null")
assertEquals("1.2.40", version.kotlinVersion)
assertEquals("dev", version.status)