summaryrefslogtreecommitdiff
path: root/src/main/scala/graphyx/tests/EmptyTest.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/graphyx/tests/EmptyTest.scala')
-rw-r--r--src/main/scala/graphyx/tests/EmptyTest.scala15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/scala/graphyx/tests/EmptyTest.scala b/src/main/scala/graphyx/tests/EmptyTest.scala
new file mode 100644
index 0000000..0e3bd84
--- /dev/null
+++ b/src/main/scala/graphyx/tests/EmptyTest.scala
@@ -0,0 +1,15 @@
+/*
+ * Graphyx
+ * copyright (c) 2009 Jakob Odersky
+ * made available under the MIT License
+*/
+
+package graphyx.tests
+
+import sims.dynamics._
+import sims.geometry._
+object EmptyTest extends Test{
+ override val title = "Empty Test"
+ val world = new World
+ def init = {}
+}