use of org.jnosql.diana.api.document.DocumentCollectionManagerFactory in project jnosql-diana-driver by eclipse.
the class OrientDBDocumentConfigurationTest method shouldCreateByConfigurationFile.
@Test
public void shouldCreateByConfigurationFile() {
OrientDBDocumentConfiguration configuration = new OrientDBDocumentConfiguration();
DocumentCollectionManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.document.DocumentCollectionManagerFactory in project jnosql-diana-driver by eclipse.
the class MongoDBDocumentConfigurationTest method shouldCreateDocumentCollectionManagerFactoryByFile.
@Test
public void shouldCreateDocumentCollectionManagerFactoryByFile() {
DocumentConfiguration configuration = new MongoDBDocumentConfiguration();
DocumentCollectionManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.document.DocumentCollectionManagerFactory in project jnosql-diana-driver by eclipse.
the class ElasticsearchDocumentConfigurationTest method shouldCreateDocumentCollectionManagerFactoryByFile.
@Test
public void shouldCreateDocumentCollectionManagerFactoryByFile() {
ElasticsearchDocumentConfiguration configuration = new ElasticsearchDocumentConfiguration();
DocumentCollectionManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.document.DocumentCollectionManagerFactory in project jnosql-diana-driver by eclipse.
the class ElasticsearchDocumentConfigurationTest method shouldCreateDocumentCollectionManagerFactoryByMap.
@Test
public void shouldCreateDocumentCollectionManagerFactoryByMap() {
ElasticsearchDocumentConfiguration configuration = new ElasticsearchDocumentConfiguration();
DocumentCollectionManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.document.DocumentCollectionManagerFactory in project jnosql-diana-driver by eclipse.
the class CouchbaseDocumentConfigurationTest method shouldCreateDocumentCollectionManagerFactoryByFile.
@Test
public void shouldCreateDocumentCollectionManagerFactoryByFile() {
CouchbaseDocumentConfiguration configuration = new CouchbaseDocumentConfiguration();
DocumentCollectionManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
Aggregations