1 45 package org.openejb.test; 46 47 48 53 public abstract class NamedTestCase extends NumberedTestCase{ 54 55 protected String testName; 56 57 public NamedTestCase(String testName){ 58 super(); 59 this.testName = testName; 60 } 61 62 public NamedTestCase(String category, String testName){ 63 super(); 64 this.testName = testName; 65 } 66 67 public String name(){ 68 return testName; 69 } 70 71 } 72 | Popular Tags |