Package com.github.kristofa.test.http.file

Examples of com.github.kristofa.test.http.file.HttpRequestResponseFileLogger


    @Before
    public void setup() {
        mockRequestWriter = mock(HttpRequestFileWriter.class);
        mockResponseWriter = mock(HttpResponseFileWriter.class);
        logger = new HttpRequestResponseFileLogger(TEMP_DIR, FILE_NAME, SEQ_NR, mockRequestWriter, mockResponseWriter);
    }
View Full Code Here


        logger = new HttpRequestResponseFileLogger(TEMP_DIR, FILE_NAME, SEQ_NR, mockRequestWriter, mockResponseWriter);
    }

    @Test(expected = NullPointerException.class)
    public void testFileHttpRequestResponseLogger() {
        new HttpRequestResponseFileLogger(null, "test", SEQ_NR, mockRequestWriter, mockResponseWriter);
    }
View Full Code Here

TOP

Related Classes of com.github.kristofa.test.http.file.HttpRequestResponseFileLogger

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.