2 * Created on Jul 31, 2004
4 * To change the template for this generated file go to
5 * Window>Preferences>Java>Code Generation>Code and Comments
7 package net.sourceforge.phpeclipse.phpunit;
10 * @author Ali Echihabi
12 * To change the template for this generated type comment go to
13 * Window>Preferences>Java>Code Generation>Code and Comments
15 public class TestCase {
21 public TestCase(String testName, String testID) {
23 this.testName = testName;
27 static final String PASS = "PASS";
28 static final String FAIL = "PASS";
29 static final String ERROR = "PASS";
38 public String getTestID() {
45 public String getTestName() {
52 public String getVerdict() {
59 public void setTestID(String string) {
66 public void setTestName(String string) {
73 public void setVerdict(String string) {