My application has a custom server component.
We have some JUnit test cases for the business logic with JMockit in place to mock the DB layer.
For integration testing, we end up having a lot of similar conditions to check. The only difference is that I need to serialize stuff and send to a socket instead of just making a call.
Is there any (simple) way to generalize the tests so that I can specify those conditions once for both tests?