/**
* @throws Exception
*/
@Before
public void setUp() throws Exception {
this.regionService = new RegionServiceImpl();
MockitoAnnotations.initMocks(this);
when(regionRepo.findOne(anyLong())).thenReturn(region);
when(regionRepo.findAll()).thenReturn(regions);