package ch.alv.components.data.adapter; /** * Unit tests for the Repositories * * @since 1.0.0 */ /*@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = "classpath:spring/jpa-data-store-adapter-test-context.xml")*/ public class JpaCustomSearchRepositoryIT { /*@Resource private JpaTestRepository repository; @Test public void testUnParameterizedSearch() { Iterable<JpaTestEntity> result = repository.find(null); Iterator<JpaTestEntity> it = result.iterator(); int counter = 0; while (it.hasNext()) { JpaTestEntity currentPos = it.next(); Assert.assertEquals("testString", currentPos.getMyAttribute()); counter++; } Assert.assertEquals(1, counter); } */ }