summaryrefslogtreecommitdiffstats
path: root/vespalog/src/test/java/com/yahoo/log/UncloseableOutputStreamTestCase.java
blob: 7fa98791b86dee5bf488f62fb6ddf00cc3cac2be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log;

import org.junit.Test;
import org.mockito.Mockito;

import java.io.IOException;
import java.io.OutputStream;

/**
 * @author <a href="mailto:simon@yahoo-inc.com">Simon Thoresen Hult</a>
 */
public class UncloseableOutputStreamTestCase {

    @Test
    public void requireThatWriteIsProxied() throws IOException {
        OutputStream out = Mockito.mock(OutputStream.class);
        new UncloseableOutputStream(out).write(69);
        Mockito.verify(out).write(69);
    }

    @Test
    public void requireThatCloseIsIgnored() {
        OutputStream out = Mockito.mock(OutputStream.class);
        new UncloseableOutputStream(out).close();
        Mockito.verifyNoMoreInteractions(out);
    }
}