diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2019-09-11 15:34:55 +0200 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2019-10-10 12:21:16 +0200 |
commit | f4920fc9d067e59a5d843a185e07c5d321c91c6d (patch) | |
tree | 9e55f99f5f612cd3e716f07b08aa309206096743 /core/src/test/kotlin/model/CommentTest.kt | |
parent | b536699655e40c62cd603e1f98869786566604bd (diff) | |
download | dokka-f4920fc9d067e59a5d843a185e07c5d321c91c6d.tar.gz dokka-f4920fc9d067e59a5d843a185e07c5d321c91c6d.tar.bz2 dokka-f4920fc9d067e59a5d843a185e07c5d321c91c6d.zip |
Extract testApi from core
Diffstat (limited to 'core/src/test/kotlin/model/CommentTest.kt')
-rw-r--r-- | core/src/test/kotlin/model/CommentTest.kt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/core/src/test/kotlin/model/CommentTest.kt b/core/src/test/kotlin/model/CommentTest.kt index 08aa3572..b94e9d0c 100644 --- a/core/src/test/kotlin/model/CommentTest.kt +++ b/core/src/test/kotlin/model/CommentTest.kt @@ -1,8 +1,13 @@ package org.jetbrains.dokka.tests +import org.jetbrains.dokka.Content +import org.jetbrains.dokka.Platform +import org.jetbrains.dokka.testApi.ModelConfig +import org.jetbrains.dokka.testApi.assertEqualsIgnoringSeparators +import org.jetbrains.dokka.testApi.checkSourceExistsAndVerifyModel +import org.jetbrains.dokka.testApi.toTestString +import org.junit.Assert.assertEquals import org.junit.Test -import org.junit.Assert.* -import org.jetbrains.dokka.* abstract class BaseCommentTest(val analysisPlatform: Platform) { val defaultModelConfig = ModelConfig(analysisPlatform = analysisPlatform) |