I am using maven project and all the testNG tests were working correctly till I compiled and published the project. Now it is giving the error "Cannot find class in classpath" when I execute the tests in eclipse
The test class is in /src/test/java
Below is my sample testng xml:
<suite name="Testing1" parallel="false" verbose="10">
<test name="Test1">
<classes>
<class name="com.test.TestClass"/>
</classes>
</test>
</suite>
Can any one tell me why is it not working any more?