How do I test client and server since they form circular dependencies?

2014-10-08 Thread Kevin Burton
I have a client and server in a multi-module. How do I test them ? I’d like to start the server in a test, then run the client against it. Then I’d like to run the client in a test, and have to test a server… maybe one idea is to build a meta-module like foo-client-server-test which as a

Re: How do I test client and server since they form circular dependencies?

2014-10-08 Thread Bernd Eckenfels
Am Wed, 8 Oct 2014 19:53:20 -0700 schrieb Kevin Burton bur...@spinn3r.com: maybe one idea is to build a meta-module like foo-client-server-test which as a dependency on foo-client and foo-server. then they could each test each other? Seems a bit of a hack but it should work .. Yes, have an

Re: How do I test client and server since they form circular dependencies?

2014-10-08 Thread Barrie Treloar
On 9 October 2014 13:49, Bernd Eckenfels e...@zusammenkunft.net wrote: Am Wed, 8 Oct 2014 19:53:20 -0700 schrieb Kevin Burton bur...@spinn3r.com: maybe one idea is to build a meta-module like foo-client-server-test which as a dependency on foo-client and foo-server. then they could each