Index: /FCKeditor.Java/trunk/java-core/src/test/java/net/fckeditor/tool/XHtmlTagToolTest.java
===================================================================
--- /FCKeditor.Java/trunk/java-core/src/test/java/net/fckeditor/tool/XHtmlTagToolTest.java	(revision 3423)
+++ /FCKeditor.Java/trunk/java-core/src/test/java/net/fckeditor/tool/XHtmlTagToolTest.java	(revision 3424)
@@ -55,49 +55,3 @@
 	    assertEquals("<test> </test>", tag.toString());
     }
-	
-	@Test
-	public void deepEquals01() throws Exception {
-		XHtmlTagTool expected = new XHtmlTagTool("tag", "some text");
-		XHtmlTagTool actual = new XHtmlTagTool("tag", "some text");
-		assertEquals(expected, actual);
-	}
-	
-	@Test
-	public void deepEquals02() throws Exception {
-		XHtmlTagTool unexpected = new XHtmlTagTool("tag", "");
-		XHtmlTagTool actual = new XHtmlTagTool("tag", XHtmlTagTool.SPACE);
-		assertNotSame(unexpected, actual);
-	}
-	
-	@Test
-	public void deepEquals03() throws Exception {
-		XHtmlTagTool expected = new XHtmlTagTool("tag", "some text");
-		expected.addAttribute("id", "some_tag_id");
-		expected.addAttribute("class", "grayShadow");
-		expected.addAttribute("style", "color: red");
-		
-		XHtmlTagTool actual = new XHtmlTagTool("tag", "some text");
-		
-		actual.addAttribute("style", "color: red");
-		actual.addAttribute("id", "some_tag_id");
-		actual.addAttribute("class", "grayShadow");
-		
-		assertEquals(expected, actual);
-	}
-	
-	@Test
-	public void deepEquals04() throws Exception {
-		XHtmlTagTool unexpected = new XHtmlTagTool("tag");
-		unexpected.addAttribute("id", "some_tag_id");
-		unexpected.addAttribute("class", "grayShadow");
-		unexpected.addAttribute("style", "color: red");
-		
-		XHtmlTagTool actual = new XHtmlTagTool("tag");
-		
-		actual.addAttribute("id", "some_tag_id");
-		actual.addAttribute("class", "grayShadow");
-		actual.addAttribute("style", "color: blue");
-		
-		assertNotSame(unexpected, actual);
-	}
 }
