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