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 2011/07/10 23:52:32 UTC

svn commit: r1144971 - in /webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap: WrongEnvelopeNamespaceTest.java WrongEnvelopeNamespaceTester.java

Author: veithen
Date: Sun Jul 10 21:52:31 2011
New Revision: 1144971

URL: http://svn.apache.org/viewvc?rev=1144971&view=rev
Log:
Enabled a test case that was not executed automatically during the build.

Added:
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTest.java
      - copied, changed from r1144617, webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTester.java
Removed:
    webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTester.java

Copied: webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTest.java (from r1144617, webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTester.java)
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTest.java?p2=webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTest.java&p1=webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTester.java&r1=1144617&r2=1144971&rev=1144971&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTester.java (original)
+++ webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap/WrongEnvelopeNamespaceTest.java Sun Jul 10 21:52:31 2011
@@ -26,7 +26,7 @@ import org.apache.axiom.soap.impl.builde
 
 import javax.xml.stream.XMLStreamReader;
 
-public class WrongEnvelopeNamespaceTester extends AbstractTestCase {
+public class WrongEnvelopeNamespaceTest extends AbstractTestCase {
     public void testCode() {
         try {
             String filename = "soap/wrongEnvelopeNamespace.xml";
@@ -40,9 +40,4 @@ public class WrongEnvelopeNamespaceTeste
             fail("Only SOAPProcessingException can be thrown here");
         }
     }
-
-    public static void main(String[] args) {
-        WrongEnvelopeNamespaceTester tester = new WrongEnvelopeNamespaceTester();
-        tester.testCode();
-    }
 }