Uses of Class
org.apache.axiom.ts.AxiomTestCase

Packages that use AxiomTestCase
org.apache.axiom.ts   
org.apache.axiom.ts.om.attribute   
org.apache.axiom.ts.om.builder   
org.apache.axiom.ts.om.container   
org.apache.axiom.ts.om.document   
org.apache.axiom.ts.om.element   
org.apache.axiom.ts.om.factory   
org.apache.axiom.ts.om.node   
org.apache.axiom.ts.om.text   
org.apache.axiom.ts.soap   
org.apache.axiom.ts.soap.body   
org.apache.axiom.ts.soap.builder   
org.apache.axiom.ts.soap.envelope   
org.apache.axiom.ts.soap.factory   
org.apache.axiom.ts.soap.fault   
org.apache.axiom.ts.soap.faultdetail   
org.apache.axiom.ts.soap.faulttext   
org.apache.axiom.ts.soap.header   
org.apache.axiom.ts.soap.headerblock   
org.apache.axiom.ts.soap11.envelope   
org.apache.axiom.ts.soap11.fault   
org.apache.axiom.ts.soap11.faultreason   
org.apache.axiom.ts.soap11.header   
org.apache.axiom.ts.soap12.fault   
org.apache.axiom.ts.soap12.faultcode   
org.apache.axiom.ts.soap12.faultreason   
org.apache.axiom.ts.soap12.faulttext   
org.apache.axiom.ts.soap12.header   
 

Uses of AxiomTestCase in org.apache.axiom.ts
 

Subclasses of AxiomTestCase in org.apache.axiom.ts
 class ConformanceTestCase
          Base class for test cases that are executed against the files from the conformance test set.
 

Methods in org.apache.axiom.ts with parameters of type AxiomTestCase
protected  void AxiomTestSuiteBuilder.addTest(AxiomTestCase test)
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.attribute
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.attribute
 class TestEqualsHashCode
           
 class TestGetQNameWithNamespace
          Tests that OMAttribute.getQName() returns the correct value for an attribute (with namespace) created by OMFactory.createOMAttribute(String, OMNamespace, String).
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.builder
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.builder
 class TestCreateOMBuilderFromDOMSource
           
 class TestCreateOMBuilderFromSAXSource
           
 class TestGetDocumentElement
          Tests the behavior of OMXMLParserWrapper.getDocumentElement().
 class TestGetDocumentElementWithDiscardDocument
          Tests the behavior of OMXMLParserWrapper.getDocumentElement(boolean) with discardDocument set to true.
 class TestInvalidXML
           
 class TestIOExceptionInGetText
          Test the behavior of the builder when an exception is thrown by XMLStreamReader.getText().
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.container
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.container
 class TestGetXMLStreamReader
          Test comparing the output of OMContainer.getXMLStreamReader(boolean) with that of a native StAX parser.
 class TestSerialize
           
 

Methods in org.apache.axiom.ts.om.container with parameters of type AxiomTestCase
 void OMContainerFactory.addTestProperties(AxiomTestCase testCase)
           
 void SerializeToOutputStream.addTestProperties(AxiomTestCase testCase)
           
 void SerializationMethod.addTestProperties(AxiomTestCase testCase)
           
 void OMElementFactory.addTestProperties(AxiomTestCase testCase)
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.document
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.document
 class TestSerializeAndConsume
          Tests the behavior of OMContainer.serializeAndConsume(java.io.OutputStream) when invoked on an OMDocument instance.
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.element
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.element
 class TestAddAttributeAlreadyOwnedByElement
          Test that calling OMElement.addAttribute(OMAttribute) with an attribute that is already owned by the element is a no-op.
 class TestAddAttributeAlreadyOwnedByOtherElement
          Test that calling OMElement.addAttribute(OMAttribute) with an attribute that is already owned by another element will clone the attribute.
 class TestAddAttributeFromOMAttributeMultiple
          Tests that when OMElement.addAttribute(org.apache.axiom.om.OMAttribute) is called multiple times for attributes with different namespaces, each call adds a corresponding namespace declaration.
 class TestAddAttributeFromOMAttributeWithExistingName
           
 class TestAddAttributeReplace1
          Test that OMElement.addAttribute(OMAttribute) behaves correctly when an attribute with the same name and namespace URI already exists.
 class TestAddAttributeReplace2
          Test that OMElement.addAttribute(String, String, OMNamespace) behaves correctly when an attribute with the same name and namespace URI already exists.
 class TestAddAttributeWithExistingNamespaceDeclarationInScope
          Tests OMElement.addAttribute(OMAttribute) doesn't create an additional namespace declaration if a corresponding declaration is already in scope.
 class TestAddAttributeWithExistingNamespaceDeclarationOnSameElement
          Tests OMElement.addAttribute(OMAttribute) doesn't create an additional namespace declaration if a corresponding declaration already exists on the element.
 class TestAddAttributeWithMaskedNamespaceDeclaration
          Test checking that OMElement.addAttribute(OMAttribute) correctly generates a new namespace declaration if an equivalent namespace declaration exists but is masked.
 class TestAddAttributeWithoutExistingNamespaceDeclaration
          Tests that OMElement.addAttribute(OMAttribute) adds a namespace declaration if the attribute has a namespace and a corresponding namespace declaration doesn't exist yet.
 class TestAddChild
           
 class TestAddChildWithParent
          Test that OMContainer.addChild(org.apache.axiom.om.OMNode) behaves correctly if the child to be added already has a parent.
 class TestDeclareNamespace1
           
 class TestGetAllAttributes1
          Test OMElement.getAllAttributes() on a programmatically created document.
 class TestGetAllAttributes2
          Test OMElement.getAllAttributes() on a parsed document.
 class TestGetAllDeclaredNamespaces
           
 class TestGetAttributeValueNonExisting
          Tests the behavior of OMElement.getAttributeValue(QName) if the element has no attribute with the given QName.
 class TestGetAttributeValueWithXmlPrefix1
          Test that OMElement.getAttributeValue(QName) works properly for an attribute with the xml prefix, even if this prefix is not declared explicitly.
 class TestGetAttributeValueWithXmlPrefix2
          Test that OMElement.getAttributeValue(QName) works properly for an attribute with the xml prefix, even if this prefix is not declared explicitly.
 class TestGetAttributeWithXmlPrefix1
          Test that OMElement.getAttribute(QName) works properly for an attribute with the xml prefix, even if this prefix is not declared explicitly.
 class TestGetAttributeWithXmlPrefix2
          Test that OMElement.getAttribute(QName) works properly for an attribute with the xml prefix, even if this prefix is not declared explicitly.
 class TestGetChildElements
          Test the element iterator
 class TestGetChildren
          Test the plain iterator which includes all the children (including the texts)
 class TestGetChildrenConcurrentModification
          Tests that the iterator returned by OMContainer.getChildren() throws a ConcurrentModificationException if the current node is removed using a method other than Iterator.remove().
 class TestGetChildrenRemove1
          test the remove exception behavior
 class TestGetChildrenRemove2
          test the remove exception behavior, consecutive remove calls
 class TestGetChildrenRemove3
          Remove all!
 class TestGetChildrenRemove4
          test whether the children count reduces.
 class TestGetChildrenWithLocalName
           
 class TestGetChildrenWithName
          Test the element iterator
 class TestGetFirstChildWithName
          Tests the behavior of OMContainer.getFirstChildWithName(QName).
 class TestGetFirstChildWithNameOnIncompleteElement
          Tests the behavior of OMContainer.getFirstChildWithName(QName) on an incomplete element.
 class TestGetNamespaceURI
           
 class TestGetNamespaceURIWithoutNamespace
           
 class TestGetQNameWithoutNamespace
           
 class TestGetXMLStreamReaderCDATAEventFromElement
           
 class TestGetXMLStreamReaderCDATAEventFromParser
           
 class TestGetXMLStreamReaderCommentEvent
           
 class TestGetXMLStreamReaderGetElementText
           
 class TestGetXMLStreamReaderGetNamespaceContext
           
 class TestGetXMLStreamReaderNextTag
           
 class TestGetXMLStreamReaderOnNonRootElement
           
 class TestGetXMLStreamReaderWithOMSourcedElementDescendant
           
 class TestIsCompleteAfterAddingIncompleteChild
          Tests that the completeness status (as returned by OMSerializable.isComplete()) is updated correctly after an incomplete child is added to a programmatically created element.
 class TestResolveQNameWithDefaultNamespace
           
 class TestResolveQNameWithNonDefaultNamespace
           
 class TestResolveQNameWithoutNamespace
           
 class TestResolveQNameWithUnboundPrefix
          Tests the behavior of OMElement.resolveQName(String) if the prefix of the QName is not bound in the namespace context of the element.
 class TestSerialization
          Tests proper serialization for different combinations of namespaces on the element and its children.
 class TestSerializationWithTwoNonBuiltOMElements
          Regression test for AXIOM-65.
 class TestSerializeAndConsumeWithIncompleteDescendant
          Tests that OMElement.serializeAndConsume(java.io.Writer) consumes incomplete descendants, even if the element itself is complete (more precisely, created programmatically).
 class TestSetText
           
 class TestSetTextQName
          Tests the behavior of OMElement.setText(QName), in particular that it adds a namespace declaration if necessary.
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.factory
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.factory
 class TestCreateOMElementWithDefaultNamespace
           
 class TestCreateOMElementWithGeneratedPrefix
           
 class TestCreateOMElementWithNonDefaultNamespace
           
 class TestCreateOMElementWithoutNamespace
           
 class TestCreateOMNamespace
           
 class TestCreateOMNamespaceWithNullURI
           
 class TestCreateOMText
           
 class TestCreateOMTextFromDataHandlerProvider
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.node
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.node
 class TestDetach
          Tests the behavior of OMNode.detach().
 class TestInsertSiblingAfter
          Tests the behavior of OMNode.insertSiblingAfter(OMNode).
 class TestInsertSiblingAfterLastChild
          Regression test for AXIOM-153.
 class TestInsertSiblingAfterOnChild
           
 class TestInsertSiblingAfterOnOrphan
          Tests that OMNode.insertSiblingBefore(OMNode) fails if the node doesn't have a parent.
 class TestInsertSiblingAfterOnSelf
           
 class TestInsertSiblingBefore
          Tests the behavior of OMNode.insertSiblingBefore(OMNode).
 class TestInsertSiblingBeforeOnChild
           
 class TestInsertSiblingBeforeOnOrphan
          Tests that OMNode.insertSiblingAfter(OMNode) fails if the node doesn't have a parent.
 class TestInsertSiblingBeforeOnSelf
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.om.text
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.om.text
 class TestBase64Streaming
          Test that when an OMText node is written to an XMLStreamWriter without MTOM support, the implementation doesn't construct an in-memory base64 representation of the complete binary content, but writes it in chunks (streaming).
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap
 class SOAPTestCase
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.body
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.body
 class TestAddFault1
           
 class TestAddFault2
           
 class TestGetFault
           
 class TestGetFaultWithParser
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.builder
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.builder
 class BadInputTest
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.envelope
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.envelope
 class TestAddHeaderToIncompleteEnvelope
          Test the behavior when adding a header to an envelope that has not yet been built completely.
 class TestBodyHeaderOrder
           
 class TestDiscardHeader
           
 class TestGetBody
           
 class TestGetBodyOnEmptyEnvelope
           
 class TestGetBodyOnEnvelopeWithHeaderOnly
           
 class TestGetBodyWithParser
           
 class TestGetHeader
           
 class TestGetHeaderWithParser
           
 class TestGetSOAPBodyFirstElementLocalNameAndNS
           
 class TestHasFault
           
 class TestHasFaultWithParser
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.factory
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.factory
 class TestCreateSOAPEnvelope
           
 class TestGetDefaultFaultEnvelope
          Tests the behavior of SOAPFactory.getDefaultFaultEnvelope().
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.fault
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.fault
 class TestGetCode
           
 class TestGetCodeWithParser
           
 class TestGetDetail
           
 class TestGetDetailWithParser
           
 class TestGetException
           
 class TestGetReason
           
 class TestGetReasonWithParser
           
 class TestGetRoleWithParser
           
 class TestSetCode
           
 class TestSetDetail
           
 class TestSetException
           
 class TestSetReason
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.faultdetail
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.faultdetail
 class TestAddDetailEntry
           
 class TestGetAllDetailEntries
           
 class TestGetAllDetailEntriesWithParser
           
 class TestWSCommons202
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.faulttext
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.faulttext
 class TestSetLang
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.header
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.header
 class SOAPRoleTest
           
 class TestAddHeaderBlock
           
 class TestExamineAllHeaderBlocks
           
 class TestExamineHeaderBlocks
           
 class TestExtractAllHeaderBlocks
           
 class TestGetHeaderBlocksWithNSURI
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap.headerblock
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap.headerblock
 class TestGetMustUnderstand
           
 class TestGetRole
           
 class TestSetMustUnderstandBoolean
           
 class TestSetMustUnderstandString01
           
 class TestSetMustUnderstandWithInvalidValue
           
 class TestSetRole
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap11.envelope
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap11.envelope
 class TestAddElementAfterBody
          Test that adding an arbitrary element to the envelope is allowed.
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap11.fault
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap11.fault
 class TestGetNode
           
 class TestSetNode
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap11.faultreason
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap11.faultreason
 class TestAddSOAPText
           
 class TestGetFirstSOAPText
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap11.header
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap11.header
 class TestExamineAllHeaderBlocksWithParser
           
 class TestExamineHeaderBlocksWithParser
           
 class TestExamineMustUnderstandHeaderBlocksWithParser
           
 class TestGetHeaderBlocksWithNSURIWithParser
           
 class TestSOAP11Roles
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap12.fault
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap12.fault
 class TestGetNodeWithParser
           
 class TestMoreChildrenAddition
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap12.faultcode
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap12.faultcode
 class TestGetSubCodeWithParser
           
 class TestGetTextAsQNameWithParser
          Tests that the SOAPFaultCode implementation for SOAP 1.2 overrides the OMElement.getTextAsQName() method such that it gets the QName from the Value element.
 class TestGetValueWithParser
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap12.faultreason
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap12.faultreason
 class TestAddSOAPTextWithSOAPVersionMismatch
           
 class TestGetFirstSOAPTextWithParser
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap12.faulttext
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap12.faulttext
 class TestGetLangWithParser
           
 

Uses of AxiomTestCase in org.apache.axiom.ts.soap12.header
 

Subclasses of AxiomTestCase in org.apache.axiom.ts.soap12.header
 class TestExamineMustUnderstandHeaderBlocks
           
 class TestSOAP12Roles
           
 



Copyright © 2004-2013 The Apache Software Foundation. All Rights Reserved.