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?

link|improve this question

Can you make the path absolute? – JavaKungFu Dec 13 '11 at 17:52
It looks like this is a known problem: github.com/cbeust/testng/issues/52 – TERACytE Dec 13 '11 at 17:52
I tried hard coding the path to "/Users/myDevDirectory/target/uber.jar!/testng-a.xml" as an experiment, which did not work. Was that what you were referring too? – TERACytE Dec 13 '11 at 18:12
The issue linked above 1) has nothing to do with this problem and 2) is closed and resolved. I answered TERACyTE on the mailing-list, see the link below. – Cedric Beust Dec 13 '11 at 23:57
feedback

1 Answer

up vote 0 down vote accepted

It looks like this cannot be done within the JAR. The testng xml configs cannot be loaded in this manner. The files need to be external from the JAR before loading.

http://groups.google.com/group/testng-users/browse_thread/thread/ad7e33342125e717?hl=en&pli=1

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.