You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ng...@apache.org on 2008/01/25 20:10:40 UTC

svn commit: r615308 - in /webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client: dispatch/DispatchMTOMFeatureTest.java proxy/ proxy/ProxyMTOMFeatureTest.java

Author: ngallardo
Date: Fri Jan 25 11:10:39 2008
New Revision: 615308

URL: http://svn.apache.org/viewvc?rev=615308&view=rev
Log:
Adding structure for new MTOMFeature tests.

Added:
    webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/dispatch/DispatchMTOMFeatureTest.java
    webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/proxy/
    webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/proxy/ProxyMTOMFeatureTest.java

Added: webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/dispatch/DispatchMTOMFeatureTest.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/dispatch/DispatchMTOMFeatureTest.java?rev=615308&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/dispatch/DispatchMTOMFeatureTest.java (added)
+++ webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/dispatch/DispatchMTOMFeatureTest.java Fri Jan 25 11:10:39 2008
@@ -0,0 +1,52 @@
+package org.apache.axis2.jaxws.client.dispatch;
+
+import junit.framework.TestCase;
+
+/**
+ * This suite of tests is for the MTOMFeature configuration that can
+ * be used on Dispatch clients.
+ */
+public class DispatchMTOMFeatureTest extends TestCase {
+
+    /*
+     * Make sure MTOM is not enabled by default.
+     */
+    public void testNoMTOMFeature() {
+        
+    }
+    
+    /*
+     * Test the default configuration of the MTOMFeature.
+     */
+    public void testDefaultMTOMFeature() {
+        
+    }
+    
+    /*
+     * Test disabling the MTOM feature.
+     */
+    public void testDisabledMTOMFeature() {
+        
+    }
+    
+    /*
+     * Test the configuration of the threshold for MTOM.
+     */
+    public void testMTOMFeatureThreshold() {
+        
+    }
+    
+    /*
+     * Test the co-existence of an MTOMFeature and a MTOM binding type for a client.
+     */
+    public void testMTOMFeatureAndBinding() {
+        
+    }
+    
+    /*
+     * Test the override of an MTOM binding by disabling MTOM via the MTOMFeature.
+     */
+    public void testMTOMFeatureAndBindingOverride() {
+        
+    }
+}

Added: webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/proxy/ProxyMTOMFeatureTest.java
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/proxy/ProxyMTOMFeatureTest.java?rev=615308&view=auto
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/proxy/ProxyMTOMFeatureTest.java (added)
+++ webservices/axis2/trunk/java/modules/jaxws/test/org/apache/axis2/jaxws/client/proxy/ProxyMTOMFeatureTest.java Fri Jan 25 11:10:39 2008
@@ -0,0 +1,52 @@
+package org.apache.axis2.jaxws.client.proxy;
+
+import junit.framework.TestCase;
+
+/**
+ * This suite of tests is for the MTOMFeature configuration that can
+ * be used on Proxy clients.
+ */
+public class ProxyMTOMFeatureTest extends TestCase {
+
+    /*
+     * Make sure MTOM is not enabled by default.
+     */
+    public void testNoMTOMFeature() {
+        
+    }
+    
+    /*
+     * Test the default configuration of the MTOMFeature.
+     */
+    public void testDefaultMTOMFeature() {
+        
+    }
+    
+    /*
+     * Test disabling the MTOM feature.
+     */
+    public void testDisabledMTOMFeature() {
+        
+    }
+    
+    /*
+     * Test the configuration of the threshold for MTOM.
+     */
+    public void testMTOMFeatureThreshold() {
+        
+    }
+    
+    /*
+     * Test the co-existence of an MTOMFeature and a MTOM binding type for a client.
+     */
+    public void testMTOMFeatureAndBinding() {
+        
+    }
+    
+    /*
+     * Test the override of an MTOM binding by disabling MTOM via the MTOMFeature.
+     */
+    public void testMTOMFeatureAndBindingOverride() {
+        
+    }
+}



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