aboutsummaryrefslogtreecommitdiff
path: root/tests/src/main/scala/tests.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/main/scala/tests.scala')
-rw-r--r--tests/src/main/scala/tests.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/src/main/scala/tests.scala b/tests/src/main/scala/tests.scala
index 64d6594..f269643 100644
--- a/tests/src/main/scala/tests.scala
+++ b/tests/src/main/scala/tests.scala
@@ -13,6 +13,8 @@ object Tests extends TestApp {
def tests() = {
import examples._
+ compileTimeRestart()
+
test("construct a Show product instance") {
import examples._
Show.generic[Person].show(Person("John Smith", 34))
@@ -86,6 +88,8 @@ object Tests extends TestApp {
//test("construct a decoder") {
//Decoder.generic[Tree[String]].decode("string")
//}.assert(_ == (Leaf("something"): Tree[String]))
+
+ compileTimeReport()
}
}