Package uk.gov.nationalarchives.droid.command

Examples of uk.gov.nationalarchives.droid.command.FilterFieldCommand


    @Test
    public void testFilterFieldOutput() {
       
        PrintWriter printWriter = mock(PrintWriter.class);
       
        FilterFieldCommand command = new FilterFieldCommand(printWriter);
        command.execute();
       
        ArgumentCaptor<String> helpCaptor = ArgumentCaptor.forClass(String.class);
       
        verify(printWriter, times(11)).println(helpCaptor.capture());
        verify(printWriter, atLeastOnce()).flush();
View Full Code Here


    /**
     * {@inheritDoc}
     */
    @Override
    public FilterFieldCommand getFilterFieldCommand() {
        return new FilterFieldCommand(printWriter);
    }
View Full Code Here

TOP

Related Classes of uk.gov.nationalarchives.droid.command.FilterFieldCommand

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.