X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/PHPFormatterTest.java b/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/PHPFormatterTest.java index 8acbb51..d8b9d32 100644 --- a/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/PHPFormatterTest.java +++ b/net.sourceforge.phpeclipse.tests/src/net/sourceforge/phpeclipse/phpeditor/php/test/PHPFormatterTest.java @@ -19,7 +19,7 @@ import org.eclipse.jface.text.IDocument; * Testcase for the PHP CodeFormatter * * @author Stefan Langer - * @version $Revision: 1.4 $ + * @version $Revision: 1.5 $ */ public class PHPFormatterTest extends TestCase { private CodeFormatter fFormatter; @@ -49,7 +49,7 @@ public class PHPFormatterTest extends TestCase { indent = Strings.computeIndent(fInitialIndentation, CodeFormatterPreferencePage.getTabSize()); } String formatedString = fFormatter.format(text, indent, null, lineDelimiter); - String testResult = ""; junit.framework.Assert.assertEquals(formatedString, testResult); @@ -65,7 +65,7 @@ public class PHPFormatterTest extends TestCase { indent = Strings.computeIndent(fInitialIndentation, CodeFormatterPreferencePage.getTabSize()); } String formatedString = fFormatter.format(text, indent, null, lineDelimiter); - String testResult = ""; junit.framework.Assert.assertEquals(formatedString, testResult); } @@ -81,7 +81,7 @@ public class PHPFormatterTest extends TestCase { indent = Strings.computeIndent(fInitialIndentation, CodeFormatterPreferencePage.getTabSize()); } String formatedString = fFormatter.format(text, indent, null, lineDelimiter); - String testResult = ""; junit.framework.Assert.assertEquals(formatedString, testResult); } @@ -96,7 +96,7 @@ public class PHPFormatterTest extends TestCase { indent = Strings.computeIndent(fInitialIndentation, CodeFormatterPreferencePage.getTabSize()); } String formatedString = fFormatter.format(text, indent, null, lineDelimiter); - String testResult = ""; junit.framework.Assert.assertEquals(formatedString, testResult); }