File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ == Running Tests
2
+
3
+ This project has both unit tests and integration tests. In our context the distinguishing point is that integration tests
4
+ need network connectivity, and unit tests need no more than local file system access. We also expect unit tests to be
5
+ very quick, whereas integration tests are allowed to take a _ little_ longer.
6
+
7
+ Unit tests are in 'src/test' and integration tests are in 'src/integTest'. To run integration tests you would need to
8
+ do ` ./gradlew check ` or ` ./gradlew build ` . For unittests just doing ` ./gradlew test ` is enough.
9
+
10
+ Test logging is controlled via ` logback-test.xml ` . Be aware that integration tests generate a lot of debug information.
11
+ Please do not commit the config file back with DEBUG turned on
12
+
13
+ == Release HOWTO
14
+
15
+ * TBC*
You can’t perform that action at this time.
0 commit comments