package org.xmx0632.deliciousfruit.erp; import org.junit.After; import org.junit.Before; public class BaseErpApiServiceTest { protected ErpApiService service; protected String url = "http://218.242.142.36:81/core/port.php"; @Before public void setUp() throws Exception { service = new ErpApiService(); service.setUrl(url); service.setUsername("user"); service.setPassword("shyst"); service.setErpMessageSender(new ErpMessageSender()); service.setErpMessageParser(new ErpMessageParser()); } @After public void tearDown() throws Exception { } }