aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFederico Igne <git@federicoigne.com>2021-10-04 18:20:50 +0100
committerFederico Igne <git@federicoigne.com>2021-10-04 18:20:50 +0100
commit0af96f42fc0d272257df83a43b4c6e48e52c1dff (patch)
tree580db98de32623f6e3ba399e475dcef0d6993e66 /README.md
parent0fdc1f692bb41f9941f6ea4f32ef8c2948a515f7 (diff)
parentc86e7d32420adcc05546efa45b21e0e31d0f6c90 (diff)
downloadRSAComb-0af96f42fc0d272257df83a43b4c6e48e52c1dff.tar.gz
RSAComb-0af96f42fc0d272257df83a43b4c6e48e52c1dff.zip
Merge branch 'upperbound' into develop
Diffstat (limited to 'README.md')
-rw-r--r--README.md23
1 files changed, 22 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6fcd98d..e61e889 100644
--- a/README.md
+++ b/README.md
@@ -118,11 +118,32 @@ java -cp <path/to/JRDFox.jar>:<path/to/fat.jar> uk.ac.ox.cs.rsacomb.RSAComb [<op
118 118
119### Running tests 119### Running tests
120 120
121To run the suit of unit test provided along with the code run 121To run the suites of tests provided along with the code run
122``` 122```
123sbt test 123sbt test
124``` 124```
125 125
126This will run all [unit tests](https://en.wikipedia.org/wiki/Unit_testing) and [functional tests](https://en.wikipedia.org/wiki/Functional_testing).
127If you want to limit the scope of the tests and run only a particular suite use
128```
129sbt "testOnly <test-class>"
130```
131
132For example, to execute only unit tests concerning the canonical model computation, run
133```
134sbt "testOnly uk.ac.ox.cs.rsacomb.CanonicalModelSpec"
135```
136
137or alternatively
138```
139sbt "testOnly *CanonicalModelSpec"
140```
141
142To run only functional tests for LUBM, excluding tests tagged as *slow* (that require more resources), run
143```
144sbt "testOnly *functional.LUBM -- -l org.scalatest.tags.Slow"
145```
146
126## Changes introduced 147## Changes introduced
127 148
128We tried to implement the system as close as possible to the theoretical description provided in [[1](#references)]. 149We tried to implement the system as close as possible to the theoretical description provided in [[1](#references)].