Return-Path: X-Original-To: apmail-ws-commits-archive@minotaur.apache.org Delivered-To: apmail-ws-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AFE5D6A1D for ; Sun, 10 Jul 2011 21:52:55 +0000 (UTC) Received: (qmail 9458 invoked by uid 500); 10 Jul 2011 21:52:55 -0000 Delivered-To: apmail-ws-commits-archive@ws.apache.org Received: (qmail 9424 invoked by uid 500); 10 Jul 2011 21:52:55 -0000 Mailing-List: contact commits-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ws.apache.org Delivered-To: mailing list commits@ws.apache.org Received: (qmail 9417 invoked by uid 99); 10 Jul 2011 21:52:55 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Jul 2011 21:52:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 10 Jul 2011 21:52:53 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2C94423888FD; Sun, 10 Jul 2011 21:52:32 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1144971 - in /webservices/commons/trunk/modules/axiom/modules/axiom-tests/src/test/java/org/apache/axiom/soap: WrongEnvelopeNamespaceTest.java WrongEnvelopeNamespaceTester.java Date: Sun, 10 Jul 2011 21:52:32 -0000 To: commits@ws.apache.org From: veithen@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110710215232.2C94423888FD@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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(); - } }