diff options
Diffstat (limited to 'plugins/base/src/test/kotlin/model')
-rw-r--r-- | plugins/base/src/test/kotlin/model/PackagesTest.kt | 15 | ||||
-rw-r--r-- | plugins/base/src/test/kotlin/model/PropertyTest.kt | 21 |
2 files changed, 0 insertions, 36 deletions
diff --git a/plugins/base/src/test/kotlin/model/PackagesTest.kt b/plugins/base/src/test/kotlin/model/PackagesTest.kt index 3deb95e9..b9e7051d 100644 --- a/plugins/base/src/test/kotlin/model/PackagesTest.kt +++ b/plugins/base/src/test/kotlin/model/PackagesTest.kt @@ -116,19 +116,4 @@ class PackagesTest : AbstractModelTest("/src/main/kotlin/packages/Test.kt", "pac } } } - - // todo -// @Test fun suppressAtPackageLevel() { -// verifyModel( -// ModelConfig( -// roots = arrayOf(KotlinSourceRoot("testdata/packages/classInPackage.kt", false)), -// perPackageOptions = listOf( -// PackageOptionsImpl(prefix = "simple.name", suppress = true) -// ), -// analysisPlatform = analysisPlatform -// ) -// ) { model -> -// assertEquals(0, model.members.count()) -// } -// } } diff --git a/plugins/base/src/test/kotlin/model/PropertyTest.kt b/plugins/base/src/test/kotlin/model/PropertyTest.kt index dc35d621..1047d6cf 100644 --- a/plugins/base/src/test/kotlin/model/PropertyTest.kt +++ b/plugins/base/src/test/kotlin/model/PropertyTest.kt @@ -273,25 +273,4 @@ class PropertyTest : AbstractModelTest("/src/main/kotlin/property/Test.kt", "pro } } } -// @Test -// fun annotatedProperty() { -// checkSourceExistsAndVerifyModel( -// "testdata/properties/annotatedProperty.kt", -// modelConfig = ModelConfig( -// analysisPlatform = analysisPlatform, -// withKotlinRuntime = true -// ) -// ) { model -> -// with(model.members.single().members.single()) { -// Assert.assertEquals(1, annotations.count()) -// with(annotations[0]) { -// Assert.assertEquals("Strictfp", name) -// Assert.assertEquals(Content.Empty, content) -// Assert.assertEquals(NodeKind.Annotation, kind) -// } -// } -// } -// } -// -//} } |