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