--- /dev/null
+/*
+ * Created on Jul 31, 2004
+ *
+ * To change the template for this generated file go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package net.sourceforge.phpeclipse.phpunit;
+
+/**
+ * @author Ali Echihabi
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public class TestCase {
+
+ /**
+ * @param testName
+ * @param testID
+ */
+ public TestCase(String testName, String testID) {
+
+ this.testName = testName;
+ this.testID = testID;
+ }
+
+ static final String PASS = "PASS";
+ static final String FAIL = "PASS";
+ static final String ERROR = "PASS";
+
+ String testName;
+ String testID;
+ String verdict;
+
+ /**
+ * @return
+ */
+ public String getTestID() {
+ return testID;
+ }
+
+ /**
+ * @return
+ */
+ public String getTestName() {
+ return testName;
+ }
+
+ /**
+ * @return
+ */
+ public String getVerdict() {
+ return verdict;
+ }
+
+ /**
+ * @param string
+ */
+ public void setTestID(String string) {
+ testID = string;
+ }
+
+ /**
+ * @param string
+ */
+ public void setTestName(String string) {
+ testName = string;
+ }
+
+ /**
+ * @param string
+ */
+ public void setVerdict(String string) {
+ verdict = string;
+ }
+
+}
--- /dev/null
+/*
+ * Created on Jul 31, 2004
+ *
+ * To change the template for this generated file go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package net.sourceforge.phpeclipse.phpunit;
+
+import java.util.HashMap;
+
+/**
+ * @author Ali Echihabi
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public class TestPool {
+
+ private HashMap tests;
+
+ public TestPool() {
+
+ tests = new HashMap();
+ }
+
+ public void addTest(TestCase test) {
+
+ tests.put(test.getTestID(), test);
+
+ }
+
+ public TestCase getTest(String testID) {
+
+ return (TestCase) tests.get(testID);
+ }
+
+}
--- /dev/null
+/*
+ * Created on Jul 31, 2004
+ *
+ * To change the template for this generated file go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+package net.sourceforge.phpeclipse.phpunit;
+
+import java.util.Vector;
+
+/**
+ * @author Ali Echihabi
+ *
+ * To change the template for this generated type comment go to
+ * Window>Preferences>Java>Code Generation>Code and Comments
+ */
+public class TestSuite {
+
+ private Vector testCases;
+ private String name;
+ private String id;
+
+ public void addTestCase(TestCase test) {
+
+ }
+
+ public void removeTestCase(TestCase test) {}
+
+ public boolean contains(TestCase test) {
+ return false;
+ }
+
+
+
+}