aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_defs/scala/test/HelloLibTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build_defs/scala/test/HelloLibTest.scala')
-rw-r--r--tools/build_defs/scala/test/HelloLibTest.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/build_defs/scala/test/HelloLibTest.scala b/tools/build_defs/scala/test/HelloLibTest.scala
deleted file mode 100644
index 7f5cb5f9b7..0000000000
--- a/tools/build_defs/scala/test/HelloLibTest.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-package scala.test
-
-import org.scalatest._
-
-class ScalaSuite extends FlatSpec {
- "HelloLib" should "call scala" in {
- assert(HelloLib.getOtherLibMessage("hello").equals("hello scala!"))
- }
-}
-
-class JavaSuite extends FlatSpec {
- "HelloLib" should "call java" in {
- assert(HelloLib.getOtherJavaLibMessage("hello").equals("hello java!"))
- }
-}
-