Suppose I have a legacy JUnit test suite that includes the following tests:
public class AwesomeTest {
public void testBusinessLogic() {
...
[awesome mocking library]
...
}
}
public class AmazingTest {
public void testBusinessProcess() {
...
[amazing xml operation]
...
}
}
Now assume that Awesome Mocking library relies on Awesome BCEL bytecode generation library which contains the class org.useful.XMLClass and this library has version 1 of XMLClass.
Now assume that Amazing Xml operation relies on Amazing Xml Library that contains the class org.useful.XMLClass and this library has version 2 of XML Class.
Also assume that version 2 of the class is not backwards compatible with version 1 - so which ever version has higher priority in the classpath - it breaks the dependencies of the other version.
Also assume that there are 400 tests that rely on awesome mocking library - so rewriting is not a desirable option.
Also assume that some critical business features have been built with amazing xml libary - and it is strongly preferred not to rewrite that.
How do you solve this classpath hell situation - apart from running the ant tests (assuming you're running them with Ant) twice with two differently manually ordered classpaths and manually determined test sub-sets? (I'm open to an idea with custom classloaders - but that seems about the same level of maintainability as the dual custom classpath with ant solution)