diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala | 17 |
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 @@ | |||
1 | package uk.ac.ox.cs.rsacomb | ||
2 | |||
3 | import org.scalatest.Suites | ||
4 | |||
5 | import uk.ac.ox.cs.rsacomb.converter.{OWLAxiomSpec, OWLClassSpec, RDFoxConverterSpec} | ||
6 | import uk.ac.ox.cs.rsacomb.sparql.{ConjunctiveQueryAnswerSpec, ConjunctiveQuerySpec} | ||
7 | |||
8 | class 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 | ) | ||