Hi
If you are having more Tests that each have similar names, like
- ClassA.testMethod123
- ClassB.testMethod123

Then you cannot tell from the result in which class the testMethod123 was run.

The result looks like this:
<testsuites>
<testsuite name="MyServiceTestWrapperServlet" tests="2" failures="0" errors="0" 
time="2.000">
   <testcase name="testMethod123" time="1.000"/>
   <testcase name="testMethod123" time="1.000"/>


But what you would like to know is the class name.
Perhaps something like:

<testsuites>
   <testsuite name="MyServiceTestWrapperServlet" tests="2" failures="0" errors="0" 
time="2.000">
      <testsuite name="ClassA" tests="1" failures="0" errors="0" time="1.000">
         <testcase name="testMethod123" time="1.000"/>
      <testsuite name="ClassB" tests="1" failures="0" errors="0" time="1.000">
         <testcase name="testMethod123" time="1.000"/>


Am I missing something here or is this an error in cactus?

Thanks in advance
/Kim


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to