Address compiler warnings.

This commit is contained in:
Gary Gregory 2019-02-24 10:11:29 -05:00
parent 4e02db1272
commit bf3f34c8b5
1 changed files with 15 additions and 13 deletions

View File

@ -53,8 +53,6 @@ import java.util.Vector;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.h2.tools.SimpleResultSet;
import org.h2.value.Value;
import org.h2.value.ValueArray;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
@ -260,22 +258,26 @@ public class CSVPrinterTest {
@Test
public void testCloseWithFlushOff() throws IOException {
final Writer writer = mock(Writer.class);
try (final Writer writer = mock(Writer.class)) {
final CSVFormat csvFormat = CSVFormat.DEFAULT;
@SuppressWarnings("resource")
final CSVPrinter csvPrinter = new CSVPrinter(writer, csvFormat);
csvPrinter.close(false);
verify(writer, never()).flush();
verify(writer, times(1)).close();
}
}
@Test
public void testCloseWithFlushOn() throws IOException {
final Writer writer = mock(Writer.class);
try (final Writer writer = mock(Writer.class)) {
final CSVFormat csvFormat = CSVFormat.DEFAULT;
@SuppressWarnings("resource")
final CSVPrinter csvPrinter = new CSVPrinter(writer, csvFormat);
csvPrinter.close(true);
verify(writer, times(1)).flush();
}
}
@Test
public void testDelimeterQuoted() throws IOException {