FileDocCategorySizeDatePackage
AttachmentTestCase.javaAPI DocApache Axis 1.48404Sat Apr 22 18:57:28 BST 2006test.wsdl.attachments

AttachmentTestCase

public class AttachmentTestCase extends TestCase
AttachmentTestCase.java This file was auto-generated from WSDL by the Apache Axis WSDL2Java emitter.

Fields Summary
Constructors Summary
public AttachmentTestCase(String name)

        super(name);
    
Methods Summary
private javax.mail.internet.MimeMultipartcreateMimeMultipart(java.lang.String data)

        // create the root multipart
        MimeMultipart mpRoot = new MimeMultipart("mixed");
        
        // Add text
        MimeBodyPart mbp1 = new MimeBodyPart();
        mbp1.setText(data);
        mpRoot.addBodyPart(mbp1);
        return mpRoot;
    
public voidtest10AttachmentPortRPCEchoAttachment()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        }
        catch (javax.xml.rpc.ServiceException jre) {
            if(jre.getLinkedCause()!=null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        org.apache.axis.attachments.OctetStream input = new org.apache.axis.attachments.OctetStream("EchoAttachment".getBytes());
        org.apache.axis.attachments.OctetStream output = null;
        output = binding.echoAttachment(input);
        // TBD - validate results
        assertTrue(Arrays.equals(input.getBytes(), output.getBytes()));
    
public voidtest1AttachmentPortRPCGetCompanyInfo2()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        java.lang.String value = null;
        value = binding.getCompanyInfo2(0, new java.lang.String("GetCompanyInfo2"), null);
        assertEquals(value, "GetCompanyInfo2");
    
public voidtest2AttachmentPortRPCInputPlainText()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        binding.inputPlainText(new java.lang.String("InputPlainText"));
        // TBD - validate results
    
public voidtest3AttachmentPortRPCInoutPlainText()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        java.lang.String value = null;
        value = binding.inoutPlainText(new java.lang.String("InoutPlainText"));
        // TBD - validate results
        assertEquals(value, "InoutPlainText");
    
public voidtest4AttachmentPortRPCEchoPlainText()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        java.lang.String value = null;
        value = binding.echoPlainText(new java.lang.String("EchoPlainText"));
        // TBD - validate results
        assertEquals(value, "EchoPlainText");
    
public voidtest5AttachmentPortRPCOutputPlainText()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        java.lang.String value = null;
        value = binding.outputPlainText();
        // TBD - validate results
        assertEquals(value, "OutputPlainText");
    
public voidtest6AttachmentPortRPCInputMimeMultipart()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        binding.inputMimeMultipart(createMimeMultipart("InputMimeMultipart"));
        // TBD - validate results
    
public voidtest7AttachmentPortRPCInoutMimeMultipart()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        javax.mail.internet.MimeMultipart value = null;
        value = binding.inoutMimeMultipart(createMimeMultipart("InoutMimeMultipart"));
        // TBD - validate results
    
public voidtest8AttachmentPortRPCEchoMimeMultipart()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        javax.mail.internet.MimeMultipart value = null;
        value = binding.echoMimeMultipart(createMimeMultipart("EchoMimeMultipart"));
        // TBD - validate results
    
public voidtest9AttachmentPortRPCOutputMimeMultipart()

        test.wsdl.attachments.Pt1 binding;
        try {
            binding = new test.wsdl.attachments.AttachmentLocator().getAttachmentPortRPC();
        } catch (javax.xml.rpc.ServiceException jre) {
            if (jre.getLinkedCause() != null)
                jre.getLinkedCause().printStackTrace();
            throw new junit.framework.AssertionFailedError("JAX-RPC ServiceException caught: " + jre);
        }
        assertTrue("binding is null", binding != null);

        // Test operation
        javax.mail.internet.MimeMultipart value = null;
        value = binding.outputMimeMultipart();
        // TBD - validate results