I have a file named test-mule-flow.xml under src/main/app folder, and I added a unit test:
MuleFlowTest extends FunctionalTestCase @Override public String getConfigResources() { return "src/main/app/test-mule-flow.xml"; } @Test public void test...... Actually those tests are executed correctly when I execute it in Eclipse(Mule Studio) and also in maven build, but unfortunately these tests are failed in Intellij IDEA version 12.
And I suppose this is caused by the classloader, in IDEA, the sources files are house in target/classes folder, and the test class are house in target/test-classes, this is maybe the reason, but how can I configure it? and it it better in maven way, I don't want to do some move configuration in idea manually.
Thanks.