aboutsummaryrefslogtreecommitdiffstats
path: root/vespalog/src/test/java/com/yahoo/log/UncloseableOutputStreamTestCase.java
blob: 4b0e6622c1eb4b3a3bfc1a33bacad5f7c5b38c91 (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
29
// Copyright Yahoo. 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 Simon Thoresen Hult
 */
@SuppressWarnings("removal")
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);
    }
}