* @see DATACMNS-385
*/
@Test
public void findsTargetSaveForIterableIfEntityImplementsIterable() throws Exception {
RepositoryMetadata metadata = new DefaultRepositoryMetadata(BossRepository.class);
RepositoryInformation information = new DefaultRepositoryInformation(metadata, CrudRepository.class, null);
Method method = BossRepository.class.getMethod("save", Iterable.class);
Method reference = CrudRepository.class.getMethod("save", Iterable.class);