From 77dc8ecd687aeb056ab411af6313dc8c33b44340 Mon Sep 17 00:00:00 2001 From: Marcus Dunn <51931484+MarcusDunn@users.noreply.github.com> Date: Mon, 19 Jun 2023 12:31:00 -0700 Subject: [PATCH] Pointed to correct dependancy for koin-test-junit5 --- docs/reference/koin-test/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/reference/koin-test/testing.md b/docs/reference/koin-test/testing.md index 68651e363..52618c5f0 100644 --- a/docs/reference/koin-test/testing.md +++ b/docs/reference/koin-test/testing.md @@ -164,7 +164,7 @@ Take attention to stop your koin instance (if you use `startKoin` in your tests) JUnit 5 support provides [Extensions]([url](https://junit.org/junit5/docs/current/user-guide/#extensions)) that will handle the starting and stopping of Koin context. This means that if you are using the extension you don't need to use the `AutoCloseKoinTest`. ### Dependency -For testing with JUnit5 you need to use `koin-junit5` dependency. +For testing with JUnit5 you need to use `koin-test-junit5` dependency. ### Writing tests You need to Register the `KoinTestExtension` and provide your module configuration. After this is done