diff options
Diffstat (limited to 'src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala')
-rw-r--r-- | src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala | 33 |
1 files changed, 21 insertions, 12 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 index 2162f8c..f32c088 100644 --- a/src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala +++ b/src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala | |||
@@ -2,16 +2,25 @@ package uk.ac.ox.cs.rsacomb | |||
2 | 2 | ||
3 | import org.scalatest.Suites | 3 | import org.scalatest.Suites |
4 | 4 | ||
5 | import uk.ac.ox.cs.rsacomb.converter.{OWLAxiomSpec, OWLClassSpec, RDFoxConverterSpec} | 5 | import uk.ac.ox.cs.rsacomb.converter.{ |
6 | import uk.ac.ox.cs.rsacomb.sparql.{ConjunctiveQueryAnswerSpec, ConjunctiveQuerySpec} | 6 | OWLAxiomSpec, |
7 | OWLClassSpec, | ||
8 | RDFoxConverterSpec | ||
9 | } | ||
10 | import uk.ac.ox.cs.rsacomb.filtering.NaiveFilteringProgramSpec | ||
11 | import uk.ac.ox.cs.rsacomb.sparql.{ | ||
12 | ConjunctiveQueryAnswerSpec, | ||
13 | ConjunctiveQuerySpec | ||
14 | } | ||
7 | 15 | ||
8 | class SuiteAll extends Suites ( | 16 | class SuiteAll |
9 | new Ontology1_CanonicalModelSpec, | 17 | extends Suites( |
10 | new Ontology2_CanonicalModelSpec, | 18 | new Ontology1_CanonicalModelSpec, |
11 | new FilteringProgramSpec, | 19 | new Ontology2_CanonicalModelSpec, |
12 | new OWLAxiomSpec, | 20 | new NaiveFilteringProgramSpec, |
13 | new OWLClassSpec, | 21 | new OWLAxiomSpec, |
14 | new RDFoxConverterSpec, | 22 | new OWLClassSpec, |
15 | new ConjunctiveQueryAnswerSpec, | 23 | new RDFoxConverterSpec, |
16 | new ConjunctiveQuerySpec | 24 | new ConjunctiveQueryAnswerSpec, |
17 | ) | 25 | new ConjunctiveQuerySpec |
26 | ) | ||