diff options
author | Stefano Germano <stefanogermano0@gmail.com> | 2020-12-18 17:14:16 +0100 |
---|---|---|
committer | Stefano Germano <stefanogermano0@gmail.com> | 2020-12-18 17:14:16 +0100 |
commit | 4c0b51ed996d1030a1acdf0ffd9e6baef897a063 (patch) | |
tree | 6916f57c3da9db236216cdb93149aa846df1159f | |
parent | 482fd0b64189e76cee28b9303f088bd8a26277b1 (diff) | |
download | RSAComb-4c0b51ed996d1030a1acdf0ffd9e6baef897a063.tar.gz RSAComb-4c0b51ed996d1030a1acdf0ffd9e6baef897a063.zip |
Suite containing all the tests
-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 | ) | ||