aboutsummaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md23
1 files changed, 21 insertions, 2 deletions
diff --git a/readme.md b/readme.md
index 7572af1..c64be93 100644
--- a/readme.md
+++ b/readme.md
@@ -53,10 +53,29 @@ cp <path-to-local-eaaf-components-git-repo>/eaaf_modules/eaaf_module_moa-sig/rep
## Compile & Test
-Requirements: openJDK 12 (OpenJDK 11 has an unfixed bug [1] that prevents the completion of TLS handshakes.)
+### Run Unit Tests
+Requirements:
+- openJDK 12 (OpenJDK 11 has an unfixed bug [1] that prevents the completion of TLS handshakes.)
+
+Command:
```
mvn test
```
-[1] https://bugs.openjdk.java.net/browse/JDK-8214098 \ No newline at end of file
+### Run Integration Tests
+
+Integration tests start with the prefix `IT`.
+
+Requirements:
+- OpenJDK 12
+- Some integration tests have additional requirements (e.g. external services). Ensure that these requirements are met as well. Check out the source code for further details.
+
+Command:
+```
+mvn test -P integration-test
+```
+
+# Footnotes
+
+[1] https://bugs.openjdk.java.net/browse/JDK-8214098