/**
* @throws Exception
*/
@Before
public void setUp() throws Exception {
this.dataCenterService = new DataCenterServiceImpl();
MockitoAnnotations.initMocks(this);
when(dataCenterRepo.findOne(anyLong())).thenReturn(dataCenter);
when(dataCenterRepo.findAll()).thenReturn(dataCenters);