Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-07-12 | Renamed and Simplified SignatureVerifier | Christof Rabensteiner | 1 | -55/+0 | |
2019-07-09 | Refactor Needles Interfaces and Rename "process" to "backend" | Christof Rabensteiner | 1 | -5/+4 | |
Reason: - Interfaces with a single method can be replaced with interfaces from java.util.function. - Less interfaces = less code = less maintenance! - Spring can inject beans by name so we name dependencies correctly to prevent ambiguity. Others: - Rename process to backend since backend gives a better description of its components. | |||||
2019-06-28 | Separate Test Suite into Unit- And Integration Tests | Christof Rabensteiner | 1 | -0/+56 | |
Per default, integration tests are excluded from build. They can be included with the `-P integration-test` argument. - Pom: Add maven profile for integration tests. - Rename integration tests (add `IT` prefix). - Move Resources into IT* folders. - Add MsgClientTest to test suite and add assertions to each test case. |