I have a testng class which tests a class which in turns load property from classpath.When i run maven install i am getting an error mentioning file not found.It is not able to find the property file though i have it in src/test/resources. How to resolve this issue?
the java code is having a constructor which tries to load the property file Properties props = JobUtils .loadProperties("x.properties"); my maven configuration:
<plugin>
<groupId>org.apache.maven.plugins
<artifactId>maven-surefire-plugin
<version>2.5
<configuration>
<skipTests>false</skipTests>
</configuration>
</plugin>
with:
<build>
<testResources>
<testResource>
<directory>src/test/resources</directory>
<filtering>false</filtering>
</testResource>
</testResources>
</build>
Also I have this x.properties in src/test/resource
Stack trace Running TestSuite is:
java.io.FileNotFoundException: x.properties (The system cannot find the file specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.(FileInputStream.java:106)
at java.io.FileInputStream.(FileInputStream.java:66)
Also note the test class i have tries to instantiate this java code and test it.
mvn testwork properly? Is the properties file part of some kind of environment/profile configuration? Can you post the stack trace and code that tries to load the properties file? – Augusto Aug 20 '11 at 9:18