private ProfileManager profileManager;
private ReportManager reportManager;
@Before
public void setup() {
reportCommand = new ReportCommand();
profileManager = mock(ProfileManager.class);
reportManager = mock(ReportManager.class);
reportCommand.setProfileManager(profileManager);