diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | src/test/scala/uk/ac/ox/cs/rsacomb/SuiteAll.scala | 17 |
2 files changed, 18 insertions, 0 deletions
| @@ -49,3 +49,4 @@ tags | |||
| 49 | .vscode/settings.json | 49 | .vscode/settings.json |
| 50 | .vscode/launch.json | 50 | .vscode/launch.json |
| 51 | project/project/metals.sbt | 51 | project/project/metals.sbt |
| 52 | drafts | ||
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 | ) | ||
