aboutsummaryrefslogtreecommitdiff
path: root/src/test/java/at/gv/egiz/moazs/ITMoaSPSSSignatureVerifierTest.java
AgeCommit message (Collapse)AuthorFilesLines
2019-07-12Renamed and Simplified SignatureVerifierChristof Rabensteiner1-55/+0
2019-07-09Refactor Needles Interfaces and Rename "process" to "backend"Christof Rabensteiner1-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-28Separate Test Suite into Unit- And Integration TestsChristof Rabensteiner1-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.