Package testcases

Source Code of testcases.TestServiceTestCase

package testcases;

import org.junit.Before;
import com.example.TestService;
import com.example.TestServiceLocator;
import com.example.TestPortType;

public class TestServiceTestCase {

    public TestService service;
    public TestPortType port;

    @Before
    public void setUp() throws Exception {
        service = new TestServiceLocator();
        port = service.getTestPort();
    }
}
TOP

Related Classes of testcases.TestServiceTestCase

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.