From 7196323582dce7ca3f9b07262a1f94ecd8514539 Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Mon, 24 Aug 2020 14:02:07 +0200 Subject: - Move `test` projects into semantic parent projects - Implement new `:test-utils` project - Resolve requirement for Android SDK installation --- .../src/main/kotlin/utils/TestOutputWriter.kt | 32 ---------------------- 1 file changed, 32 deletions(-) delete mode 100644 plugins/base/test-utils/src/main/kotlin/utils/TestOutputWriter.kt (limited to 'plugins/base/test-utils/src/main/kotlin/utils') diff --git a/plugins/base/test-utils/src/main/kotlin/utils/TestOutputWriter.kt b/plugins/base/test-utils/src/main/kotlin/utils/TestOutputWriter.kt deleted file mode 100644 index 00b865b4..00000000 --- a/plugins/base/test-utils/src/main/kotlin/utils/TestOutputWriter.kt +++ /dev/null @@ -1,32 +0,0 @@ -package utils - -import org.jetbrains.dokka.base.DokkaBase -import org.jetbrains.dokka.base.renderers.OutputWriter -import org.jetbrains.dokka.plugability.DokkaPlugin - -class TestOutputWriterPlugin(failOnOverwrite: Boolean = true) : DokkaPlugin() { - val writer = TestOutputWriter(failOnOverwrite) - - private val dokkaBase by lazy { plugin() } - - val testWriter by extending { - (dokkaBase.outputWriter - with writer - override dokkaBase.fileWriter) - } -} - -class TestOutputWriter(private val failOnOverwrite: Boolean = true) : OutputWriter { - val contents: Map get() = _contents - - private val _contents = mutableMapOf() - override suspend fun write(path: String, text: String, ext: String) { - val fullPath = "$path$ext" - _contents.putIfAbsent(fullPath, text)?.also { - if (failOnOverwrite) throw AssertionError("File $fullPath is being overwritten.") - } - } - - override suspend fun writeResources(pathFrom: String, pathTo: String) = - write(pathTo, "*** content of $pathFrom ***", "") -} -- cgit