Re: Extending component-test's test in the service module

2018-04-18 Thread Isaac Kamga
Hi Markus, Thanks a million for your timely clarifications. I had earlier tried to make the service module depend on the component-test so I don't have to duplicate the component-test's code in service/src/test/java module to document APIs. Now that this approach would lead to a circular

Re: Extending component-test's test in the service module

2018-04-18 Thread Markus Geiss
Hey Isaac, service is only allowed to import the API module. Introducing such dependency as you mentioned would introduce a circular dependency, and component-test is a separate module just consuming API and service. Cheers Markus .::Yagni likes a DRY KISS::. On Wed, Apr 18, 2018 at 12:21 PM

Extending component-test's test in the service module

2018-04-18 Thread Isaac Kamga
Hello everyone, I've a question about testing in Apache Fineract CN. Is there a way to write tests in service /src/test/java which extend the tests in the component-test