aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Germano <stefanogermano0@gmail.com>2020-12-18 17:14:16 +0100
committerStefano Germano <stefanogermano0@gmail.com>2020-12-18 17:14:16 +0100
commit4c0b51ed996d1030a1acdf0ffd9e6baef897a063 (patch)
tree6916f57c3da9db236216cdb93149aa846df1159f
parent482fd0b64189e76cee28b9303f088bd8a26277b1 (diff)
downloadRSAComb-4c0b51ed996d1030a1acdf0ffd9e6baef897a063.tar.gz
RSAComb-4c0b51ed996d1030a1acdf0ffd9e6baef897a063.zip
Suite containing all the tests
-rw-r--r--src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala b/src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala
new file mode 100644
index 0000000..2162f8c
--- /dev/null
+++ b/src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala
@@ -0,0 +1,17 @@
1package uk.ac.ox.cs.rsacomb
2
3import org.scalatest.Suites
4
5import uk.ac.ox.cs.rsacomb.converter.{OWLAxiomSpec, OWLClassSpec, RDFoxConverterSpec}
6import uk.ac.ox.cs.rsacomb.sparql.{ConjunctiveQueryAnswerSpec, ConjunctiveQuerySpec}
7
8class SuiteAll extends Suites (
9 new Ontology1_CanonicalModelSpec,
10 new Ontology2_CanonicalModelSpec,
11 new FilteringProgramSpec,
12 new OWLAxiomSpec,
13 new OWLClassSpec,
14 new RDFoxConverterSpec,
15 new ConjunctiveQueryAnswerSpec,
16 new ConjunctiveQuerySpec
17)