}
public final void testFindAll() {
// Mock countryMapper
CountryMapper mockCountryMapper = EasyMock.createMock(CountryMapper.class);
// set expected call
EasyMock.expect(mockCountryMapper.findAll()).andReturn(new ArrayList<Country>());
EasyMock.replay(mockCountryMapper);
CountryRepository countryRepository = new CountryRepositoryImpl(mockCountryMapper);