diff options
| author | Federico Igne <federico.igne@cs.ox.ac.uk> | 2021-01-05 18:04:34 +0000 |
|---|---|---|
| committer | Federico Igne <federico.igne@cs.ox.ac.uk> | 2021-01-05 18:04:34 +0000 |
| commit | b0e195336a950095a733f32bf07754254ed08a37 (patch) | |
| tree | 6fb1f7b1094e13816cb6b5a1c273820af0b94460 | |
| parent | ad58eea444d9f1f16a2498a32777719911203a23 (diff) | |
| parent | f38a37129e93dec38d80d963f4f7aae435258a48 (diff) | |
| download | RSAComb-b0e195336a950095a733f32bf07754254ed08a37.tar.gz RSAComb-b0e195336a950095a733f32bf07754254ed08a37.zip | |
Merge remote-tracking branch 'origin/master'
| -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 | ) | ||
