use of org.jnosql.diana.api.key.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class KeyValueConfigurationTest method shouldCreateKeyValueFactory.
@Test
public void shouldCreateKeyValueFactory() {
Map<String, String> map = new HashMap<>();
BucketManagerFactory managerFactory = configuration.get(map);
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.key.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class KeyValueConfigurationTest method shouldCreateKeyValueFactoryFromFile.
@Test
public void shouldCreateKeyValueFactoryFromFile() {
BucketManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.key.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class RiakKeyValueConfigurationTest method shouldCreateKeyValueFactoryFromFile.
@Test
public void shouldCreateKeyValueFactoryFromFile() {
BucketManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.key.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class RedisConfigurationTest method shouldCreateKeyValueFactoryFromFile.
@Test
public void shouldCreateKeyValueFactoryFromFile() {
BucketManagerFactory managerFactory = configuration.get();
assertNotNull(managerFactory);
}
use of org.jnosql.diana.api.key.BucketManagerFactory in project jnosql-diana-driver by eclipse.
the class RedisConfigurationTest method shouldCreateKeyValueFactory.
@Test
public void shouldCreateKeyValueFactory() {
Map<String, String> map = new HashMap<>();
map.put("redis-master-hoster", "localhost");
BucketManagerFactory managerFactory = configuration.getManagerFactory(map);
assertNotNull(managerFactory);
}
Aggregations