diff --git a/docs/src/main/tut/docs/actions.md b/docs/src/main/tut/docs/actions.md index 7197e5b..ea07dea 100644 --- a/docs/src/main/tut/docs/actions.md +++ b/docs/src/main/tut/docs/actions.md @@ -27,10 +27,10 @@ Simple actions do not contain other actions. Compound actions contain other actions within themselves. * **`label`**. Introduced a labeled block of code. See the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Example.scala) demo. -* **`test`**. Defines a named test. See the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/.scala) demo. +* **`test`**. Defines a named test. See the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Example.scala) demo. * **`changeOptions`**. Used to change options within its body. See the [FailOnly](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/coverage/FailOnly.scala) test. -* **`timer`**. Reports the execution time of its body. See the [Timing](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Timing.scala) demo. -* **`assertTiming`**. Reports the execution time of its body. Fails if a max time is exceeded. See the [Timing](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Timing.scala) demo. +* **`timer`**. Reports the execution time of its body. See the [Timing](https://github.com/47deg/LambdaTestTiming/blob/master/src/test/scala/demo/Timing.scala) demo. +* **`assertTiming`**. Reports the execution time of its body. Fails if a max time is exceeded. See the [Timing](https://github.com/47deg/LambdaTestTiming/blob/master/src/test/scala/demo/Timing.scala) demo. * **`nest`**. Used to nest declarations in immutable tests. See the [Immutable](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Immutable.scala) demo. ### Assertion Nesting Rule diff --git a/docs/src/main/tut/docs/quick.md b/docs/src/main/tut/docs/quick.md index 7ee4aa8..20e83b3 100644 --- a/docs/src/main/tut/docs/quick.md +++ b/docs/src/main/tut/docs/quick.md @@ -11,9 +11,9 @@ Include LambdaTest jar "com.fortysevendeg" % "lambda-test_2.11" % "1.1.2" % "test" -Each test file should +Each test file should include - include com.fortyseven.lambdatest._ + import com.fortyseven.lambdatest._ Each test file class should extend the `LambdaTest` trait. @@ -25,4 +25,4 @@ If you want to run tests via SBT then the `build.sbt` file should specify testFrameworks += new TestFramework("com.fortysevendeg.lambdatest.sbtinterface.LambdaFramework") To see a simple example look at the [Example](https://github.com/47deg/LambdaTest/blob/master/src/test/scala/demo/Example.scala) demo. - \ No newline at end of file +