X-Git-Url: http://git.phpeclipse.com

diff --git a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestCase.java b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestCase.java
index 5f3a8ed..3456c37 100644
--- a/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestCase.java
+++ b/net.sourceforge.phpeclipse.phpunit/src/net/sourceforge/phpeclipse/phpunit/testpool/TestCase.java
@@ -6,40 +6,37 @@
  * 
  *************************************************************************/
 
-
 package net.sourceforge.phpeclipse.phpunit.testpool;
 
-
- 
 public class TestCase {
 
 	public static final String PASS = "PASS";
+
 	public static final String FAIL = "FAIL";
-	public static final String ERROR = "ERROR";
 
+	public static final String ERROR = "ERROR";
 
 	private TestSuite parentSuite;
+
 	private String testName;
+
 	private String testID;
+
 	private String verdict;
+
 	private String parentTestSuiteName;
-	
-	
-	
 
 	/**
 	 * @param testName
 	 * @param testID
 	 */
 	public TestCase(String testID, String testName, String parentTestSuiteName) {
-		
+
 		this.testName = testName;
 		this.testID = testID;
 		this.parentTestSuiteName = parentTestSuiteName;
 	}
 
-
-
 	/**
 	 * @return
 	 */
@@ -66,10 +63,8 @@ public class TestCase {
 	 */
 	public void setTestID(String string) {
 		testID = string;
-		
-	}
-
 
+	}
 
 	/**
 	 * @param string
@@ -83,12 +78,12 @@ public class TestCase {
 	 */
 	public void setVerdict(String string) {
 		verdict = string;
-		
-		if(isFailure())
+
+		if (isFailure())
 			parentSuite.setHasFailure();
-		if(isError())
+		if (isError())
 			parentSuite.setHasError();
-		
+
 	}
 
 	/**
@@ -97,14 +92,14 @@ public class TestCase {
 	public void setParentSuite(TestSuite suite) {
 		this.parentSuite = suite;
 		suite.setName(parentTestSuiteName);
-		
+
 	}
 
 	/**
 	 * @return
 	 */
 	public Object getParentSuite() {
-		
+
 		return parentSuite;
 	}
 
@@ -112,7 +107,7 @@ public class TestCase {
 	 * @return
 	 */
 	public boolean isError() {
-		
+
 		return getVerdict().equals(TestCase.ERROR);
 	}
 
@@ -120,16 +115,16 @@ public class TestCase {
 	 * @return
 	 */
 	public boolean isFailure() {
-		
+
 		return getVerdict().equals(TestCase.FAIL);
-		
+
 	}
 
 	/**
 	 * @return
 	 */
 	public boolean isPass() {
-		
+
 		return getVerdict().equals(TestCase.PASS);
 
 	}