You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by ve...@apache.org on 2012/07/04 22:55:46 UTC

svn commit: r1357404 - /webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/impl/llom/OMHeaderBlockTest.java

Author: veithen
Date: Wed Jul  4 20:55:46 2012
New Revision: 1357404

URL: http://svn.apache.org/viewvc?rev=1357404&view=rev
Log:
Removed a test case that is already covered elsewhere.

Modified:
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/impl/llom/OMHeaderBlockTest.java

Modified: webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/impl/llom/OMHeaderBlockTest.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/impl/llom/OMHeaderBlockTest.java?rev=1357404&r1=1357403&r2=1357404&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/impl/llom/OMHeaderBlockTest.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/impl/llom/OMHeaderBlockTest.java Wed Jul  4 20:55:46 2012
@@ -44,15 +44,4 @@ public class OMHeaderBlockTest extends O
         assertTrue("Actor was not properly set",
                    soapHeaderElement.getRole().equalsIgnoreCase(newActorURI));
     }
-
-    public void testSetAndGetMustUnderstand() {
-        soapHeaderElement.setMustUnderstand(false);
-        assertTrue("MustUnderstand was not properly set",
-                   !soapHeaderElement.getMustUnderstand());
-    }
-
-    public void testGetMustUnderstand() {
-        //TODO Implement getMustUnderstand().
-    }
-
 }