@Test
public void should_work_with_2nd_repo()
{
// given
final String name = "testWorkWith2ndRepository";
Simple2 simple = createSimple2(name);
// when
Simple2 result = repo2.findByName(name);
// then
assertNotNull(result);
assertEquals(simple.getId(), result.getId());
assertEquals(name, result.getName());
}