Minor kotlin-test doc fixes

- fix JUnit5Contributor docs reference
- fix typo
This commit is contained in:
Ilya Gorbunov
2020-03-27 19:43:53 +03:00
parent 96ed87d81b
commit cdc53f5fec
2 changed files with 2 additions and 2 deletions
@@ -8,7 +8,7 @@ package kotlin.test
/**
* Serves as a bridge to a testing framework.
*
* The tests structure is defined using internal functions suite and test, which delegate to correspoding functions of a [FrameworkAdapter].
* The tests structure is defined using internal functions suite and test, which delegate to corresponding functions of a [FrameworkAdapter].
* Sample test layout:
*
* suite('a suite', false, function() {
@@ -9,7 +9,7 @@ import org.junit.jupiter.api.Assertions
import kotlin.test.*
/**
* Provides [JUnitAsserter] if `org.junit.Assert` is found in the classpath.
* Provides [JUnit5Asserter] if `org.junit.jupiter.api.Assertions` class is found in the classpath.
*/
class JUnit5Contributor : AsserterContributor {
override fun contribute(): Asserter? {