diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 20:49:04 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 20:49:04 +0400 |
commit | 044308ba60a0d4462ccb7388f16ad17a31d7450d (patch) | |
tree | c93411f0670e29fe333962789c0df97b1602f7be /test/src | |
parent | 8a4dad46b171c55dabc5f9be29e1261e1cc5928e (diff) | |
download | dokka-044308ba60a0d4462ccb7388f16ad17a31d7450d.tar.gz dokka-044308ba60a0d4462ccb7388f16ad17a31d7450d.tar.bz2 dokka-044308ba60a0d4462ccb7388f16ad17a31d7450d.zip |
Complete package migration and move files into folders.
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/ClassTest.kt | 2 | ||||
-rw-r--r-- | test/src/FunctionTest.kt | 3 | ||||
-rw-r--r-- | test/src/PackageTest.kt | 2 | ||||
-rw-r--r-- | test/src/PropertyTest.kt | 3 | ||||
-rw-r--r-- | test/src/TestAPI.kt | 4 |
5 files changed, 6 insertions, 8 deletions
diff --git a/test/src/ClassTest.kt b/test/src/ClassTest.kt index ae9de5a2..708a1798 100644 --- a/test/src/ClassTest.kt +++ b/test/src/ClassTest.kt @@ -2,7 +2,7 @@ package org.jetbrains.dokka.tests import org.junit.Test import kotlin.test.* -import com.jetbrains.dokka.* +import org.jetbrains.dokka.* public class ClassTest { Test fun emptyClass() { diff --git a/test/src/FunctionTest.kt b/test/src/FunctionTest.kt index 3eeb4174..90b937de 100644 --- a/test/src/FunctionTest.kt +++ b/test/src/FunctionTest.kt @@ -2,8 +2,7 @@ package org.jetbrains.dokka.tests import org.junit.Test import kotlin.test.* -import com.jetbrains.dokka.* - +import org.jetbrains.dokka.* public class FunctionTest { Test fun function() { diff --git a/test/src/PackageTest.kt b/test/src/PackageTest.kt index 01e42949..7b376012 100644 --- a/test/src/PackageTest.kt +++ b/test/src/PackageTest.kt @@ -2,7 +2,7 @@ package org.jetbrains.dokka.tests import org.junit.Test import kotlin.test.* -import com.jetbrains.dokka.* +import org.jetbrains.dokka.* public class PackageTest { Test fun rootPackage() { diff --git a/test/src/PropertyTest.kt b/test/src/PropertyTest.kt index 6fa17168..1d30f2ce 100644 --- a/test/src/PropertyTest.kt +++ b/test/src/PropertyTest.kt @@ -2,8 +2,7 @@ package org.jetbrains.dokka.tests import org.junit.Test import kotlin.test.* -import com.jetbrains.dokka.* - +import org.jetbrains.dokka.* public class PropertyTest { Test fun valueProperty() { diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index d5466b88..65254bca 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -2,8 +2,8 @@ package org.jetbrains.dokka.tests import org.jetbrains.jet.cli.common.messages.* import com.intellij.openapi.util.* -import com.jetbrains.dokka.* import kotlin.test.fail +import org.jetbrains.dokka.* public fun verifyModel(vararg files: String, verifier: (DocumentationModel) -> Unit) { val messageCollector = object : MessageCollector { @@ -23,7 +23,7 @@ public fun verifyModel(vararg files: String, verifier: (DocumentationModel) -> U } } - val environment = AnalysesEnvironment(messageCollector) { + val environment = AnalysisEnvironment(messageCollector) { addSources(files.toList()) } |