Skip to content
Snippets Groups Projects
Commit a594d57c authored by felmer's avatar felmer
Browse files

SE-182 bug in test fixed

SVN: 14150
parent 713b74c6
No related branches found
No related tags found
No related merge requests found
...@@ -33,7 +33,6 @@ import ch.systemsx.cisd.common.exceptions.ConfigurationFailureException; ...@@ -33,7 +33,6 @@ import ch.systemsx.cisd.common.exceptions.ConfigurationFailureException;
import ch.systemsx.cisd.common.exceptions.UserFailureException; import ch.systemsx.cisd.common.exceptions.UserFailureException;
import ch.systemsx.cisd.openbis.generic.server.business.IDataStoreServiceFactory; import ch.systemsx.cisd.openbis.generic.server.business.IDataStoreServiceFactory;
import ch.systemsx.cisd.openbis.generic.server.business.bo.ICommonBusinessObjectFactory; import ch.systemsx.cisd.openbis.generic.server.business.bo.ICommonBusinessObjectFactory;
import ch.systemsx.cisd.openbis.generic.server.dataaccess.IDataStoreDAO;
import ch.systemsx.cisd.openbis.generic.shared.AbstractServerTestCase; import ch.systemsx.cisd.openbis.generic.shared.AbstractServerTestCase;
import ch.systemsx.cisd.openbis.generic.shared.IDataStoreService; import ch.systemsx.cisd.openbis.generic.shared.IDataStoreService;
import ch.systemsx.cisd.openbis.generic.shared.IETLLIMSService; import ch.systemsx.cisd.openbis.generic.shared.IETLLIMSService;
...@@ -88,8 +87,6 @@ public class ETLServiceTest extends AbstractServerTestCase ...@@ -88,8 +87,6 @@ public class ETLServiceTest extends AbstractServerTestCase
private IDataStoreService dataStoreService; private IDataStoreService dataStoreService;
private IDataStoreDAO dataStoreDAO;
@Override @Override
@BeforeMethod @BeforeMethod
public final void setUp() public final void setUp()
...@@ -98,7 +95,6 @@ public class ETLServiceTest extends AbstractServerTestCase ...@@ -98,7 +95,6 @@ public class ETLServiceTest extends AbstractServerTestCase
boFactory = context.mock(ICommonBusinessObjectFactory.class); boFactory = context.mock(ICommonBusinessObjectFactory.class);
dssfactory = context.mock(IDataStoreServiceFactory.class); dssfactory = context.mock(IDataStoreServiceFactory.class);
dataStoreService = context.mock(IDataStoreService.class); dataStoreService = context.mock(IDataStoreService.class);
dataStoreDAO = context.mock(IDataStoreDAO.class);
} }
@Test @Test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment