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:
parent
594c09aa96
commit
5eec932c2b
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue