diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 20:53:46 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 20:53:46 +0400 |
commit | 6afd7af76563f373e971256f8c9a7dcf42183fd4 (patch) | |
tree | afd350714842b4ec4d9145b8edd43f2962a51290 | |
parent | 044308ba60a0d4462ccb7388f16ad17a31d7450d (diff) | |
download | dokka-6afd7af76563f373e971256f8c9a7dcf42183fd4.tar.gz dokka-6afd7af76563f373e971256f8c9a7dcf42183fd4.tar.bz2 dokka-6afd7af76563f373e971256f8c9a7dcf42183fd4.zip |
Migrate tests to org.jetbrains.dokka
-rw-r--r-- | test/data/properties/valuePropertyWithGetter.kt | 2 | ||||
-rw-r--r-- | test/data/properties/variablePropertyWithAccessors.kt | 5 | ||||
-rw-r--r-- | test/src/model/ClassTest.kt (renamed from test/src/ClassTest.kt) | 0 | ||||
-rw-r--r-- | test/src/model/FunctionTest.kt (renamed from test/src/FunctionTest.kt) | 0 | ||||
-rw-r--r-- | test/src/model/PackageTest.kt (renamed from test/src/PackageTest.kt) | 0 | ||||
-rw-r--r-- | test/src/model/PropertyTest.kt (renamed from test/src/PropertyTest.kt) | 0 |
6 files changed, 4 insertions, 3 deletions
diff --git a/test/data/properties/valuePropertyWithGetter.kt b/test/data/properties/valuePropertyWithGetter.kt index 52c3534a..64d3848c 100644 --- a/test/data/properties/valuePropertyWithGetter.kt +++ b/test/data/properties/valuePropertyWithGetter.kt @@ -1,2 +1,2 @@ -val property +val property: String get() = "test"
\ No newline at end of file diff --git a/test/data/properties/variablePropertyWithAccessors.kt b/test/data/properties/variablePropertyWithAccessors.kt index 87c1be38..152fb7d0 100644 --- a/test/data/properties/variablePropertyWithAccessors.kt +++ b/test/data/properties/variablePropertyWithAccessors.kt @@ -1,3 +1,4 @@ -var property +var property: String get() = "test" - set(value) {}
\ No newline at end of file + set(value) { + }
\ No newline at end of file diff --git a/test/src/ClassTest.kt b/test/src/model/ClassTest.kt index 708a1798..708a1798 100644 --- a/test/src/ClassTest.kt +++ b/test/src/model/ClassTest.kt diff --git a/test/src/FunctionTest.kt b/test/src/model/FunctionTest.kt index 90b937de..90b937de 100644 --- a/test/src/FunctionTest.kt +++ b/test/src/model/FunctionTest.kt diff --git a/test/src/PackageTest.kt b/test/src/model/PackageTest.kt index 7b376012..7b376012 100644 --- a/test/src/PackageTest.kt +++ b/test/src/model/PackageTest.kt diff --git a/test/src/PropertyTest.kt b/test/src/model/PropertyTest.kt index 1d30f2ce..1d30f2ce 100644 --- a/test/src/PropertyTest.kt +++ b/test/src/model/PropertyTest.kt |