Package uk.gov.nationalarchives.droid.command.action

Examples of uk.gov.nationalarchives.droid.command.action.ReportCommand


    private ProfileManager profileManager;
    private ReportManager reportManager;

    @Before
    public void setup() {
        reportCommand = new ReportCommand();

        profileManager = mock(ProfileManager.class);
        reportManager = mock(ReportManager.class);
       
        reportCommand.setProfileManager(profileManager);
View Full Code Here


            "profile1.droid",
            "-n",
            "planets"
        };
       
        ReportCommand command = mock(ReportCommand.class);
        when(context.getReportCommand()).thenReturn(command);
       
        DroidCommandLine droidCommandLine = new DroidCommandLine(args);
       
        droidCommandLine.setContext(context);
View Full Code Here

TOP

Related Classes of uk.gov.nationalarchives.droid.command.action.ReportCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.