Added test

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/private/luca.frosini/infrastructure-tests@124265 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Luca Frosini 2016-02-17 15:59:33 +00:00
parent 594c09aa96
commit 5eec932c2b
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
/**
*
*/
package org.gcube.documentstore.persistence;
import java.util.concurrent.TimeUnit;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author Luca Frosini (ISTI - CNR) http://www.lucafrosini.com/
*
*/
public class PersistenceBackendFactoryTest {
private static final Logger logger = LoggerFactory.getLogger(PersistenceBackendFactoryTest.class);
@Test
public void parsingTest() throws Exception {
PersistenceBackendFactory.getPersistenceBackend(null);
PersistenceBackendFactory.flushAll(100, TimeUnit.MILLISECONDS);
}
}