/**
* @throws Exception
*/
@Before
public void setUp() throws Exception {
this.farmService = new FarmServiceImpl();
MockitoAnnotations.initMocks(this);
when(farmRepository.findOne(anyLong())).thenReturn(farm);
when(farmRepository.findAll()).thenReturn(farms);