I have an shaded executable jar created by a Maven build. Within I have a main class that executes and attempts to run a collection of TestNG tests. It runs until it it attempts to load the xml config files for the tests. The steps within the main class are:
suites.add("testng-A.xml");
suites.add("testng-B.xml");
testng.setTestSuites(suites);
testng.addListener(tla);
testng.run();
The problem is that I cannot get TestNG to successfully find the xml files. I receive a "java.io.FileNotFoundException: testng-a.xml (No such file or directory)" error. The location of the files in the JAR are:
/com/address/MyMainClass
/testng-a.xml
/testng-b.xml
I am running the jar with the following command:
java -jar uber.jar
Any ideas on how I can get this to work?