From c63ea36637ce956029fb15b1482c0683ecb8a587 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Wed, 30 Aug 2023 15:58:46 +0200 Subject: Migrate to JUnit 5 and unify used test API (#3138) --- .../docs/developer_guide/plugin-development/sample-plugin-tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs-developer/src/doc/docs/developer_guide') diff --git a/docs-developer/src/doc/docs/developer_guide/plugin-development/sample-plugin-tutorial.md b/docs-developer/src/doc/docs/developer_guide/plugin-development/sample-plugin-tutorial.md index 55d7001f..e0d0968d 100644 --- a/docs-developer/src/doc/docs/developer_guide/plugin-development/sample-plugin-tutorial.md +++ b/docs-developer/src/doc/docs/developer_guide/plugin-development/sample-plugin-tutorial.md @@ -228,7 +228,7 @@ Below you will find a complete unit test that passes, and the main takeaways bel package org.example.dokka.plugin import org.jetbrains.dokka.base.testApi.testRunner.BaseAbstractTest -import org.junit.Test +import kotlin.test.Test import kotlin.test.assertEquals class HideInternalApiPluginTest : BaseAbstractTest() { -- cgit