aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorShadaj Laddad <shadaj@users.noreply.github.com>2017-11-29 12:42:07 -0800
committerGitHub <noreply@github.com>2017-11-29 12:42:07 -0800
commit834af65ed610d6b1b278b5204801306808a90645 (patch)
tree497739a7c94a2670828f65c691744c0c3c6b8a92 /tests
parentebeca9258d5e629327abbcf67e0066a4cdeac173 (diff)
downloadmagnolia-834af65ed610d6b1b278b5204801306808a90645.tar.gz
magnolia-834af65ed610d6b1b278b5204801306808a90645.tar.bz2
magnolia-834af65ed610d6b1b278b5204801306808a90645.zip
Actually instantiate the ParentClass so unit tests run
Diffstat (limited to 'tests')
-rw-r--r--tests/src/main/scala/tests.scala2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/src/main/scala/tests.scala b/tests/src/main/scala/tests.scala
index 6810fc9..727fb70 100644
--- a/tests/src/main/scala/tests.scala
+++ b/tests/src/main/scala/tests.scala
@@ -184,5 +184,7 @@ object Tests extends TestApp {
implicitly[Show[String, InnerClass]].show(InnerClass("foo"))
}.assert(_ == "InnerClass(name=foo)")
}
+
+ new ParentClass
}
}