Package com.jsonws

Source Code of com.jsonws.AllTests

package com.jsonws;

import junit.framework.Test;
import junit.framework.TestSuite;

import com.jsonws.codec.CodecTestDefault;
import com.jsonws.codec.ParameterTest;
import com.jsonws.doc.TestCheckEndPonitDocument;

public class AllTests {

  public static Test suite() {
    TestSuite suite = new TestSuite("Test for com.jsonws");
    //$JUnit-BEGIN$
   
    suite.addTestSuite(CodecTestDefault.class);
    suite.addTestSuite(ParameterTest.class);
   
    suite.addTestSuite(TestCheckEndPonitDocument.class);
    //$JUnit-END$
    return suite;
  }

}
TOP

Related Classes of com.jsonws.AllTests

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.