beac1739056542c6763afac8825e37b1d67ae2ef
[phpeclipse.git] / net.sourceforge.phpeclipse.phpunit / src / net / sourceforge / phpeclipse / phpunit / TestCase.java
1 /*
2  * Created on Jul 31, 2004
3  *
4  * To change the template for this generated file go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */
7 package net.sourceforge.phpeclipse.phpunit;
8
9 /**
10  * @author Ali Echihabi
11  *
12  * To change the template for this generated type comment go to
13  * Window>Preferences>Java>Code Generation>Code and Comments
14  */
15 public class TestCase {
16
17         /**
18          * @param testName
19          * @param testID
20          */
21         public TestCase(String testName, String testID) {
22                 
23                 this.testName = testName;
24                 this.testID = testID;
25         }
26
27         static final String PASS = "PASS";
28         static final String FAIL = "PASS";
29         static final String ERROR = "PASS";
30
31         String testName;
32         String testID;
33         String verdict;
34
35         /**
36          * @return
37          */
38         public String getTestID() {
39                 return testID;
40         }
41
42         /**
43          * @return
44          */
45         public String getTestName() {
46                 return testName;
47         }
48
49         /**
50          * @return
51          */
52         public String getVerdict() {
53                 return verdict;
54         }
55
56         /**
57          * @param string
58          */
59         public void setTestID(String string) {
60                 testID = string;
61         }
62
63         /**
64          * @param string
65          */
66         public void setTestName(String string) {
67                 testName = string;
68         }
69
70         /**
71          * @param string
72          */
73         public void setVerdict(String string) {
74                 verdict = string;
75         }
76
77 }