FileDocCategorySizeDatePackage
SwaTestCase.javaAPI DocApache Axis 1.41697Sat Apr 22 18:56:52 BST 2006samples.swa

SwaTestCase

public class SwaTestCase extends TestCase
Test the SwA sample code.

Fields Summary
static Log
log
Field log
Constructors Summary
public SwaTestCase(String name)
Constructor SwaTestCase

param
name


               
       
        super(name);
    
Methods Summary
public voiddoTest()
Method doTest

throws
Exception


        String[] args = {
        };

        Tester.main(args);
    
public voidtestSwAService()
Method testSwAService

throws
Exception


        try {
            log.info("Testing SOAP with Attachements sample.");
            doTest();
            log.info("Test complete.");
        } catch (Exception e) {
            e.printStackTrace();

            throw new Exception("Fault returned from test: " + e);
        }