Hi
How should i add specific test case names that needs to be executed while
running mvn tests.
In the latest pom.xml we have
<unittest.include>**/Test**.java</unittest.include>
Now if i try to add some 3 or 4 testcase name like stated below then only the
last one in the list gets executed.
<unittest.include>**/TestLogRolling*.java</unittest.include>
<unittest.include>**/TestOpenRegionHandler*.java</unittest.include>
<unittest.include>**/TestSplitTransaction*.java</unittest.include>
This is running only TestSplitTransaction.java
Previously <include>**/TestHLog.java</include>
<include>**/TestMaster*.java</include>
It was running only TestHLog and all testcases starting with TestMaster.
Am i missing something here? Any help is greatly appreciated.
Regards
Ram