You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commons-dev@ws.apache.org by jo...@apache.org on 2006/08/10 09:13:19 UTC

svn commit: r430291 - /webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/

Author: jochen
Date: Thu Aug 10 00:13:17 2006
New Revision: 430291

URL: http://svn.apache.org/viewvc?rev=430291&view=rev
Log:
Making the *TestCase classes abstract, so that we can use the Eclipse
JUnit runner to run all tests at once. (It would invoke the *TestCase
classes otherwise.)

Modified:
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPBodyTestCase.java
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultCodeTestCase.java
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultReasonTestCase.java
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultSubCodeTestCase.java
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultTestCase.java
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPHeaderTestCase.java
    webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPTestCase.java

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPBodyTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPBodyTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPBodyTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPBodyTestCase.java Thu Aug 10 00:13:17 2006
@@ -16,7 +16,7 @@
 
 package org.apache.axiom.soap;
 
-public class SOAPBodyTestCase extends SOAPTestCase {
+public abstract class SOAPBodyTestCase extends SOAPTestCase {
     protected SOAPBody soap11Body;
     protected SOAPBody soap12Body;
 

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultCodeTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultCodeTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultCodeTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultCodeTestCase.java Thu Aug 10 00:13:17 2006
@@ -16,7 +16,7 @@
 
 package org.apache.axiom.soap;
 
-public class SOAPFaultCodeTestCase extends SOAPFaultTestCase {
+public abstract class SOAPFaultCodeTestCase extends SOAPFaultTestCase {
 
     protected SOAPFaultCode soap11FaultCode;
     protected SOAPFaultCode soap12FaultCode;

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultReasonTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultReasonTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultReasonTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultReasonTestCase.java Thu Aug 10 00:13:17 2006
@@ -16,7 +16,7 @@
 
 package org.apache.axiom.soap;
 
-public class SOAPFaultReasonTestCase extends SOAPFaultTestCase {
+public abstract class SOAPFaultReasonTestCase extends SOAPFaultTestCase {
 
     protected SOAPFaultReason soap11FaultReason;
     protected SOAPFaultReason soap12FaultReason;

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultSubCodeTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultSubCodeTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultSubCodeTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultSubCodeTestCase.java Thu Aug 10 00:13:17 2006
@@ -16,7 +16,7 @@
 
 package org.apache.axiom.soap;
 
-public class SOAPFaultSubCodeTestCase extends SOAPFaultCodeTestCase {
+public abstract class SOAPFaultSubCodeTestCase extends SOAPFaultCodeTestCase {
     protected SOAPFaultValue soap11FaultValue;
     protected SOAPFaultValue soap12FaultValueInFaultCode;
     protected SOAPFaultSubCode soap12FaultSubCodeInCode;

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPFaultTestCase.java Thu Aug 10 00:13:17 2006
@@ -18,7 +18,7 @@
 
 import org.apache.axiom.om.OMAbstractFactory;
 
-public class SOAPFaultTestCase extends SOAPBodyTestCase {
+public abstract class SOAPFaultTestCase extends SOAPBodyTestCase {
     protected SOAPFault soap11Fault;
     protected SOAPFault soap12Fault;
     protected SOAPFault soap11FaultWithParser;

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPHeaderTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPHeaderTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPHeaderTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPHeaderTestCase.java Thu Aug 10 00:13:17 2006
@@ -18,7 +18,7 @@
 
 import org.apache.axiom.om.OMNamespace;
 
-public class SOAPHeaderTestCase extends SOAPTestCase {
+public abstract class SOAPHeaderTestCase extends SOAPTestCase {
     protected SOAPHeader soap11Header;
     protected SOAPHeader soap12Header;
     protected SOAPHeader soap11HeaderWithParser;

Modified: webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPTestCase.java
URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPTestCase.java?rev=430291&r1=430290&r2=430291&view=diff
==============================================================================
--- webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPTestCase.java (original)
+++ webservices/commons/trunk/modules/axiom/test/org/apache/axiom/soap/SOAPTestCase.java Thu Aug 10 00:13:17 2006
@@ -29,7 +29,7 @@
 import java.io.FileNotFoundException;
 import java.io.FileReader;
 
-public class SOAPTestCase extends AbstractTestCase {
+public abstract class SOAPTestCase extends AbstractTestCase {
     protected SOAPFactory soap11Factory;
     protected SOAPFactory soap12Factory;
     protected OMFactory omFactory;



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: commons-dev-help@ws.apache.org