summaryrefslogtreecommitdiff
path: root/src/test/scala/forge/TestUtil.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/forge/TestUtil.scala')
-rw-r--r--src/test/scala/forge/TestUtil.scala56
1 files changed, 0 insertions, 56 deletions
diff --git a/src/test/scala/forge/TestUtil.scala b/src/test/scala/forge/TestUtil.scala
index f06dc6b6..8d944c65 100644
--- a/src/test/scala/forge/TestUtil.scala
+++ b/src/test/scala/forge/TestUtil.scala
@@ -1,6 +1,5 @@
package forge
-import forge.Target.test
import utest.assert
import scala.collection.mutable
@@ -17,59 +16,4 @@ object TestUtil {
}
}
- class TestGraphs(){
- object singleton {
- val single = test()
- }
- object pair {
- val up = test()
- val down = test(up)
- }
-
- object anonTriple{
- val up = test()
- val down = test(test(up))
- }
- object diamond{
- val up = test()
- val left = test(up)
- val right = test(up)
- val down = test(left, right)
- }
- object anonDiamond{
- val up = test()
- val down = test(test(up), test(up))
- }
-
- // o g-----o
- // \ \ \
- // o o h-----I---o
- // \ / \ / \ / \ \
- // A---c--o E o-o \ \
- // / \ / \ / \ o---J
- // o d o--o o / /
- // \ / \ / /
- // o o---F---o
- // / /
- // o--B o
- object bigSingleTerminal{
- val a = test(test(), test())
- val b = test(test())
- val e = {
- val c = test(a)
- val d = test(a)
- test(test(test(), test(c)), test(test(c, test(d, b))))
- }
- val f = test(test(test(), test(e)))
-
- val i = {
- val g = test()
- val h = test(g, e)
- test(test(g), test(test(h)))
- }
- val j = test(test(i), test(i, f), test(f))
- }
-
- (singleton, pair, anonTriple, diamond, anonDiamond, bigSingleTerminal)
- }
}