From 3cb4702a68139788de6e1f7b087ced345f2b71ba Mon Sep 17 00:00:00 2001 From: Błażej Kardyś Date: Fri, 20 Nov 2020 17:23:10 +0100 Subject: Changing how multimodule location provider works and improving gfm link substitution --- core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/test-api') diff --git a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt index 380eb1d8..1e758fec 100644 --- a/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt +++ b/core/test-api/src/main/kotlin/testApi/testRunner/TestRunner.kt @@ -20,7 +20,7 @@ import java.nio.file.Path import java.nio.file.Paths // TODO: take dokka configuration from file -open class AbstractTest< M: TestMethods, T : TestBuilder, D: DokkaTestGenerator >( +abstract class AbstractTest< M: TestMethods, T : TestBuilder, D: DokkaTestGenerator >( protected val testBuilder: () -> T, protected val dokkaTestGenerator: (DokkaConfiguration, DokkaLogger, M, List) -> D, protected val logger: TestLogger, -- cgit