/**
* @throws Exception
*/
@Before
public void setUp() throws Exception {
this.packageService = new PackageServiceImpl();
MockitoAnnotations.initMocks(this);
when(packageRepo.findOne(anyLong())).thenReturn(pkg);
when(packageRepo.findAll()).thenReturn(pkgs);