예제 #1
0
 protected void doRun(TestCase testCase) throws Exception {
   if (testCase.isIgnored()) {
     logWarning(Text.valueOf("Ignore ").plus(testCase.getName()));
     return;
   }
   logMessage("test", Text.valueOf(testCase.getName()));
   super.doRun(testCase);
 }
 /**
  * Get the full name of this test.
  *
  * @return The full name of this test.
  */
 public String getFullName() {
   TestSuite suite = mParentCase.getParent();
   return suite.getFullName() + "." + mParentCase.getName() + METHOD_SEPARATOR + mName;
 }