Author: veithen
Date: Sun Apr 25 13:49:53 2010
New Revision: 937799
URL: http://svn.apache.org/viewvc?rev=937799&view=rev
Log:
Cleaned up the test cases relevant for WSCOMMONS-530.
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP11FaultDetailTestBase.java
(with props)
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP12FaultDetailTestBase.java
(with props)
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP11FaultDetailTest.java
(with props)
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP12FaultDetailTest.java
(with props)
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP11FaultDetailTest.java
(with props)
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP12FaultDetailTest.java
- copied, changed from r937773,
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPFaultDetailTest.java
Removed:
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAPFaultDetailTest.java
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPFaultDetailTest.java
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAPFaultDetailTestBase.java
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP11FaultDetailTestBase.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP11FaultDetailTestBase.java?rev=937799&view=auto
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP11FaultDetailTestBase.java
(added)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP11FaultDetailTestBase.java
Sun Apr 25 13:49:53 2010
@@ -0,0 +1,36 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.axiom.soap;
+
+import org.apache.axiom.om.OMMetaFactory;
+
+public class SOAP11FaultDetailTestBase extends SOAPFaultDetailTestBase {
+ public SOAP11FaultDetailTestBase(OMMetaFactory omMetaFactory) {
+ super(omMetaFactory);
+ }
+
+ protected void setUp() throws Exception {
+ super.setUp();
+ omNamespace =
+ omFactory.createOMNamespace("http://www.test.org", "test");
+ soapFaultDetail = soap11Factory.createSOAPFaultDetail(soap11Fault);
+ soapFaultDetailWithParser = soap11FaultWithParser.getDetail();
+ }
+}
Propchange:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP11FaultDetailTestBase.java
------------------------------------------------------------------------------
svn:eol-style = native
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP12FaultDetailTestBase.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP12FaultDetailTestBase.java?rev=937799&view=auto
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP12FaultDetailTestBase.java
(added)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP12FaultDetailTestBase.java
Sun Apr 25 13:49:53 2010
@@ -0,0 +1,36 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.axiom.soap;
+
+import org.apache.axiom.om.OMMetaFactory;
+
+public class SOAP12FaultDetailTestBase extends SOAPFaultDetailTestBase {
+ public SOAP12FaultDetailTestBase(OMMetaFactory omMetaFactory) {
+ super(omMetaFactory);
+ }
+
+ protected void setUp() throws Exception {
+ super.setUp();
+ omNamespace =
+ omFactory.createOMNamespace("http://www.test.org", "test");
+ soapFaultDetail = soap12Factory.createSOAPFaultDetail(soap12Fault);
+ soapFaultDetailWithParser = soap12FaultWithParser.getDetail();
+ }
+}
Propchange:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAP12FaultDetailTestBase.java
------------------------------------------------------------------------------
svn:eol-style = native
Modified:
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAPFaultDetailTestBase.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAPFaultDetailTestBase.java?rev=937799&r1=937798&r2=937799&view=diff
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAPFaultDetailTestBase.java
(original)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-api/src/test/java/org/apache/axiom/soap/SOAPFaultDetailTestBase.java
Sun Apr 25 13:49:53 2010
@@ -19,209 +19,108 @@
package org.apache.axiom.soap;
+import java.util.Iterator;
+
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.OMMetaFactory;
import org.apache.axiom.om.OMNamespace;
import org.apache.axiom.om.OMText;
-import java.util.Iterator;
-
public class SOAPFaultDetailTestBase extends SOAPFaultTestCase {
- protected SOAPFaultDetail soap11FaultDetail;
- protected SOAPFaultDetail soap12FaultDetail;
- protected SOAPFaultDetail soap11FaultDetailWithParser;
- protected SOAPFaultDetail soap12FaultDetailWithParser;
+ protected SOAPFaultDetail soapFaultDetail;
+ protected SOAPFaultDetail soapFaultDetailWithParser;
protected OMNamespace omNamespace;
public SOAPFaultDetailTestBase(OMMetaFactory omMetaFactory) {
super(omMetaFactory);
}
- protected void setUp() throws Exception {
- super.setUp();
- omNamespace =
- omFactory.createOMNamespace("http://www.test.org", "test");
- soap11FaultDetail = soap11Factory.createSOAPFaultDetail(soap11Fault);
- soap12FaultDetail = soap12Factory.createSOAPFaultDetail(soap12Fault);
- soap11FaultDetailWithParser = soap11FaultWithParser.getDetail();
- soap12FaultDetailWithParser = soap12FaultWithParser.getDetail();
- }
-
- //SOAP 1.1 Fault Detail Test (Programaticaly Created)
- public void testSOAP11AddDetailEntry() {
- soap11FaultDetail.addDetailEntry(
- omFactory.createOMElement("DetailEntry1", omNamespace));
- soap11FaultDetail.addDetailEntry(
- omFactory.createOMElement("DetailEntry2", omNamespace));
- Iterator iterator = soap11FaultDetail.getAllDetailEntries();
- OMElement detailEntry1 = (OMElement) iterator.next();
- assertFalse(
- "SOAP 1.1 Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns empty iterator",
- detailEntry1 == null);
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - detailEntry1 local name
mismatch",
- detailEntry1.getLocalName().equals("DetailEntry1"));
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - detailEntry1 namespace uri
mismatch",
- detailEntry1.getNamespace().getNamespaceURI().equals(
- "http://www.test.org"));
- OMElement detailEntry2 = (OMElement) iterator.next();
- assertFalse(
- "SOAP 1.1 Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns an iterator with only one
object",
- detailEntry2 == null);
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - detailEntry2 local name
mismatch",
- detailEntry2.getLocalName().equals("DetailEntry2"));
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - detailEntry2 namespace uri
mismatch",
- detailEntry2.getNamespace().getNamespaceURI().equals(
- "http://www.test.org"));
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns an iterator with three
objects",
- !iterator.hasNext());
- }
-
- public void testSOAP11GetAllDetailEntries() {
- Iterator iterator = soap11FaultDetail.getAllDetailEntries();
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - After creating
SOAP11FaultDetail element, it has DetailEntries",
- !iterator.hasNext());
- soap11FaultDetail.addDetailEntry(
- omFactory.createOMElement("DetailEntry", omNamespace));
- iterator = soap11FaultDetail.getAllDetailEntries();
- OMElement detailEntry = (OMElement) iterator.next();
- assertFalse(
- "SOAP 1.1 Fault Detail Test : - After calling addDetailEntry
method, getAllDetailEntries method returns empty iterator",
- detailEntry == null);
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - detailEntry local name
mismatch",
- detailEntry.getLocalName().equals("DetailEntry"));
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - detailEntry namespace uri
mismatch",
- detailEntry.getNamespace().getNamespaceURI().equals(
- "http://www.test.org"));
- assertTrue(
- "SOAP 1.1 Fault Detail Test : - After calling addDetailEntry
method once, getAllDetailEntries method returns an iterator with two objects",
- !iterator.hasNext());
- }
-
- //SOAP 1.2 Fault Detail Test (Programaticaly Created)
- public void testSOAP12AddDetailEntry() {
- soap12FaultDetail.addDetailEntry(
+ //SOAP Fault Detail Test (Programaticaly Created)
+ public void testAddDetailEntry() {
+ soapFaultDetail.addDetailEntry(
omFactory.createOMElement("DetailEntry1", omNamespace));
- soap12FaultDetail.addDetailEntry(
+ soapFaultDetail.addDetailEntry(
omFactory.createOMElement("DetailEntry2", omNamespace));
- Iterator iterator = soap12FaultDetail.getAllDetailEntries();
+ Iterator iterator = soapFaultDetail.getAllDetailEntries();
OMElement detailEntry1 = (OMElement) iterator.next();
assertFalse(
- "SOAP 1.2 Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns empty iterator",
+ "SOAP Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns empty iterator",
detailEntry1 == null);
assertTrue(
- "SOAP 1.2 Fault Detail Test : - detailEntry1 local name
mismatch",
+ "SOAP Fault Detail Test : - detailEntry1 local name mismatch",
detailEntry1.getLocalName().equals("DetailEntry1"));
assertTrue(
- "SOAP 1.2 Fault Detail Test : - detailEntry1 namespace uri
mismatch",
+ "SOAP Fault Detail Test : - detailEntry1 namespace uri
mismatch",
detailEntry1.getNamespace().getNamespaceURI().equals(
"http://www.test.org"));
OMElement detailEntry2 = (OMElement) iterator.next();
assertFalse(
- "SOAP 1.2 Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns an iterator with only one
object",
+ "SOAP Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns an iterator with only one
object",
detailEntry2 == null);
assertTrue(
- "SOAP 1.2 Fault Detail Test : - detailEntry2 local name
mismatch",
+ "SOAP Fault Detail Test : - detailEntry2 local name mismatch",
detailEntry2.getLocalName().equals("DetailEntry2"));
assertTrue(
- "SOAP 1.2 Fault Detail Test : - detailEntry2 namespace uri
mismatch",
+ "SOAP Fault Detail Test : - detailEntry2 namespace uri
mismatch",
detailEntry2.getNamespace().getNamespaceURI().equals(
"http://www.test.org"));
assertTrue(
- "SOAP 1.2 Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns an iterator with three
objects",
+ "SOAP Fault Detail Test : - After calling addDetailEntry
method twice, getAllDetailEntries method returns an iterator with three
objects",
!iterator.hasNext());
}
- public void testSOAP12GetAllDetailEntries() {
- Iterator iterator = soap12FaultDetail.getAllDetailEntries();
+ public void testGetAllDetailEntries() {
+ Iterator iterator = soapFaultDetail.getAllDetailEntries();
assertTrue(
- "SOAP 1.2 Fault Detail Test : - After creating
SOAP11FaultDetail element, it has DetailEntries",
+ "SOAP Fault Detail Test : - After creating SOAP11FaultDetail
element, it has DetailEntries",
!iterator.hasNext());
- soap12FaultDetail.addDetailEntry(
+ soapFaultDetail.addDetailEntry(
omFactory.createOMElement("DetailEntry", omNamespace));
- iterator = soap12FaultDetail.getAllDetailEntries();
+ iterator = soapFaultDetail.getAllDetailEntries();
OMElement detailEntry = (OMElement) iterator.next();
assertFalse(
- "SOAP 1.2 Fault Detail Test : - After calling addDetailEntry
method, getAllDetailEntries method returns empty iterator",
+ "SOAP Fault Detail Test : - After calling addDetailEntry
method, getAllDetailEntries method returns empty iterator",
detailEntry == null);
assertTrue(
- "SOAP 1.2 Fault Detail Test : - detailEntry local name
mismatch",
+ "SOAP Fault Detail Test : - detailEntry local name mismatch",
detailEntry.getLocalName().equals("DetailEntry"));
assertTrue(
- "SOAP 1.2 Fault Detail Test : - detailEntry namespace uri
mismatch",
+ "SOAP Fault Detail Test : - detailEntry namespace uri
mismatch",
detailEntry.getNamespace().getNamespaceURI().equals(
"http://www.test.org"));
assertTrue(
- "SOAP 1.2 Fault Detail Test : - After calling addDetailEntry
method once, getAllDetailEntries method returns an iterator with two objects",
- !iterator.hasNext());
- }
-
- //SOAP 1.1 Fault Detail Test (With Parser)
- public void testSOAP11GetAllDetailEntriesWithParser() {
- Iterator iterator = soap11FaultDetailWithParser.getAllDetailEntries();
- OMText textEntry = (OMText) iterator.next();
- assertFalse(
- "SOAP 1.1 Fault Detail Test With Parser : -
getAllDetailEntries method returns empty iterator",
- textEntry == null);
- assertTrue(
- "SOAP 1.1 Fault Detail Test With Parser : - text value
mismatch",
- textEntry.getText().trim().equals("Details of error"));
- OMElement detailEntry1 = (OMElement) iterator.next();
- assertFalse(
- "SOAP 1.1 Fault Detail Test With Parser : -
getAllDetailEntries method returns an itrator without detail entries",
- detailEntry1 == null);
- assertTrue(
- "SOAP 1.1 Fault Detail Test With Parser : - detailEntry1
localname mismatch",
- detailEntry1.getLocalName().equals("MaxTime"));
- iterator.next();
- OMElement detailEntry2 = (OMElement) iterator.next();
- assertFalse(
- "SOAP 1.1 Fault Detail Test With Parser : -
getAllDetailEntries method returns an itrator with only one detail entries",
- detailEntry2 == null);
- assertTrue(
- "SOAP 1.1 Fault Detail Test With Parser : - detailEntry2
localname mismatch",
- detailEntry2.getLocalName().equals("AveTime"));
- iterator.next();
- assertTrue(
- "SOAP 1.1 Fault Detail Test With Parser : -
getAllDetailEntries method returns an itrator with more than two detail
entries",
+ "SOAP Fault Detail Test : - After calling addDetailEntry
method once, getAllDetailEntries method returns an iterator with two objects",
!iterator.hasNext());
}
- //SOAP 1.2 Fault Detail Test (With Parser)
- public void testSOAP12GetAllDetailEntriesWithParser() {
- Iterator iterator = soap12FaultDetailWithParser.getAllDetailEntries();
+ //SOAP Fault Detail Test (With Parser)
+ public void testGetAllDetailEntriesWithParser() {
+ Iterator iterator = soapFaultDetailWithParser.getAllDetailEntries();
OMText textEntry = (OMText) iterator.next();
assertFalse(
- "SOAP 1.2 Fault Detail Test With Parser : -
getAllDetailEntries method returns empty iterator",
+ "SOAP Fault Detail Test With Parser : - getAllDetailEntries
method returns empty iterator",
textEntry == null);
assertTrue(
- "SOAP 1.2 Fault Detail Test With Parser : - text value
mismatch",
+ "SOAP Fault Detail Test With Parser : - text value mismatch",
textEntry.getText().trim().equals("Details of error"));
OMElement detailEntry1 = (OMElement) iterator.next();
assertFalse(
- "SOAP 1.2 Fault Detail Test With Parser : -
getAllDetailEntries method returns an itrator without detail entries",
+ "SOAP Fault Detail Test With Parser : - getAllDetailEntries
method returns an itrator without detail entries",
detailEntry1 == null);
assertTrue(
- "SOAP 1.2 Fault Detail Test With Parser : - detailEntry1
localname mismatch",
+ "SOAP Fault Detail Test With Parser : - detailEntry1 localname
mismatch",
detailEntry1.getLocalName().equals("MaxTime"));
iterator.next();
OMElement detailEntry2 = (OMElement) iterator.next();
assertFalse(
- "SOAP 1.2 Fault Detail Test With Parser : -
getAllDetailEntries method returns an itrator with only one detail entries",
+ "SOAP Fault Detail Test With Parser : - getAllDetailEntries
method returns an itrator with only one detail entries",
detailEntry2 == null);
assertTrue(
- "SOAP 1.2 Fault Detail Test With Parser : - detailEntry2
localname mismatch",
+ "SOAP Fault Detail Test With Parser : - detailEntry2 localname
mismatch",
detailEntry2.getLocalName().equals("AveTime"));
iterator.next();
assertTrue(
- "SOAP 1.2 Fault Detail Test With Parser : -
getAllDetailEntries method returns an itrator with more than two detail
entries",
+ "SOAP Fault Detail Test With Parser : - getAllDetailEntries
method returns an itrator with more than two detail entries",
!iterator.hasNext());
}
}
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP11FaultDetailTest.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP11FaultDetailTest.java?rev=937799&view=auto
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP11FaultDetailTest.java
(added)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP11FaultDetailTest.java
Sun Apr 25 13:49:53 2010
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.axiom.soap.impl.dom;
+
+import org.apache.axiom.om.impl.dom.factory.OMDOMMetaFactory;
+import org.apache.axiom.soap.SOAP11FaultDetailTestBase;
+
+public class SOAP11FaultDetailTest extends SOAP11FaultDetailTestBase {
+ public SOAP11FaultDetailTest() {
+ super(new OMDOMMetaFactory());
+ }
+}
Propchange:
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP11FaultDetailTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP12FaultDetailTest.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP12FaultDetailTest.java?rev=937799&view=auto
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP12FaultDetailTest.java
(added)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP12FaultDetailTest.java
Sun Apr 25 13:49:53 2010
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.axiom.soap.impl.dom;
+
+import org.apache.axiom.om.impl.dom.factory.OMDOMMetaFactory;
+import org.apache.axiom.soap.SOAP12FaultDetailTestBase;
+
+public class SOAP12FaultDetailTest extends SOAP12FaultDetailTestBase {
+ public SOAP12FaultDetailTest() {
+ super(new OMDOMMetaFactory());
+ }
+}
Propchange:
webservices/commons/trunk/modules/axiom/modules/axiom-dom/src/test/java/org/apache/axiom/soap/impl/dom/SOAP12FaultDetailTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Added:
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP11FaultDetailTest.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP11FaultDetailTest.java?rev=937799&view=auto
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP11FaultDetailTest.java
(added)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP11FaultDetailTest.java
Sun Apr 25 13:49:53 2010
@@ -0,0 +1,29 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.axiom.soap.impl.llom;
+
+import org.apache.axiom.om.impl.llom.factory.OMLinkedListMetaFactory;
+import org.apache.axiom.soap.SOAP11FaultDetailTestBase;
+
+public class SOAP11FaultDetailTest extends SOAP11FaultDetailTestBase {
+ public SOAP11FaultDetailTest() {
+ super(new OMLinkedListMetaFactory());
+ }
+}
Propchange:
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP11FaultDetailTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Copied:
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP12FaultDetailTest.java
(from r937773,
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPFaultDetailTest.java)
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP12FaultDetailTest.java?p2=webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP12FaultDetailTest.java&p1=webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPFaultDetailTest.java&r1=937773&r2=937799&rev=937799&view=diff
==============================================================================
---
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAPFaultDetailTest.java
(original)
+++
webservices/commons/trunk/modules/axiom/modules/axiom-impl/src/test/java/org/apache/axiom/soap/impl/llom/SOAP12FaultDetailTest.java
Sun Apr 25 13:49:53 2010
@@ -21,12 +21,12 @@ package org.apache.axiom.soap.impl.llom;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.impl.llom.factory.OMLinkedListMetaFactory;
+import org.apache.axiom.soap.SOAP12FaultDetailTestBase;
import org.apache.axiom.soap.SOAPFactory;
import org.apache.axiom.soap.SOAPFaultDetail;
-import org.apache.axiom.soap.SOAPFaultDetailTestBase;
-public class SOAPFaultDetailTest extends SOAPFaultDetailTestBase {
- public SOAPFaultDetailTest() {
+public class SOAP12FaultDetailTest extends SOAP12FaultDetailTestBase {
+ public SOAP12FaultDetailTest() {
super(new OMLinkedListMetaFactory());
}