X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/TestCase.java b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/TestCase.java deleted file mode 100644 index beac173..0000000 --- a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/TestCase.java +++ /dev/null @@ -1,77 +0,0 @@ -/* - * 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; - } - -}