Quick Start
Include LambdaTest jar
"com.47deg" % "lambda-test_2.12" % "1.3.1" % "test"
Each test file should include
import com.fortysevendeg.lambdatest._
Each test file class should extend the LambdaTest
trait.
Each test class must define a local val act
whose value is the
tests to be run.
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 demo.