use of org.eclipse.jnosql.communication.query.cache.CachedGetQueryProvider in project jnosql-diana by eclipse.
the class GetQueryProviderTest method shouldGetSupplier.
@Test
public void shouldGetSupplier() {
GetQueryProvider provider = ServiceLoaderProvider.get(GetQueryProvider.class);
Assertions.assertNotNull(provider);
Assertions.assertTrue(provider instanceof CachedGetQueryProvider);
}
Aggregations