package org.gcube.accounting.insert.storage.plugin; import java.util.HashMap; import java.util.Map; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * @author Luca Frosini (ISTI - CNR) */ public class Tests { /** * Logger */ private static Logger logger = LoggerFactory.getLogger(Tests.class); @Before public void beforeTest() { } @Test public void testLaunch() throws Exception { Map inputs = new HashMap(); AccountingInsertStoragePlugin plugin = new AccountingInsertStoragePlugin(); plugin.launch(inputs); } @After public void after() { } }