From 927cd04405f942ab02693de9c3c48a4f62b96aeb Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 19 May 2017 14:19:28 +0200 Subject: [PATCH] Add module documentation for kotlin.test --- libraries/kotlin.test/Module.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 libraries/kotlin.test/Module.md diff --git a/libraries/kotlin.test/Module.md b/libraries/kotlin.test/Module.md new file mode 100644 index 00000000000..b4f04a5f316 --- /dev/null +++ b/libraries/kotlin.test/Module.md @@ -0,0 +1,10 @@ +# Module kotlin.test + +## kotlin.test + +kotlin.test provides a set of utility functions for performing assertions in tests, independently of the test framework +being used. The functions are defined as [top-level functions in the package](kotlin.test/index.html#functions). + +The test framework is abstracted through the [Asserter] class. A basic [Asserter] implementation is provided out of the +box. The `kotlin-test-junit` module provides an implementation of [Asserter] on top of JUnit. Note that the class is not intended +to be used directly from tests.