Skip to content

Commit 32e6891

Browse files
committed
No _ in test method names needed
1 parent 9e690e4 commit 32e6891

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/test/java/org/apache/commons/csv/CSVParserTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -220,23 +220,23 @@ public void testBOM() throws IOException {
220220
}
221221

222222
@Test
223-
public void testBOMInputStream_ParserWithInputStream() throws IOException {
223+
public void testBOMInputStreamParserWithInputStream() throws IOException {
224224
try (final BOMInputStream inputStream = createBOMInputStream("org/apache/commons/csv/CSVFileParser/bom.csv");
225225
final CSVParser parser = CSVParser.parse(inputStream, UTF_8, CSVFormat.EXCEL.withHeader())) {
226226
parser.forEach(record -> assertNotNull(record.get("Date")));
227227
}
228228
}
229229

230230
@Test
231-
public void testBOMInputStream_ParserWithReader() throws IOException {
231+
public void testBOMInputStreamParserWithReader() throws IOException {
232232
try (final Reader reader = new InputStreamReader(createBOMInputStream("org/apache/commons/csv/CSVFileParser/bom.csv"), UTF_8_NAME);
233233
final CSVParser parser = new CSVParser(reader, CSVFormat.EXCEL.withHeader())) {
234234
parser.forEach(record -> assertNotNull(record.get("Date")));
235235
}
236236
}
237237

238238
@Test
239-
public void testBOMInputStream_parseWithReader() throws IOException {
239+
public void testBOMInputStreamParseWithReader() throws IOException {
240240
try (final Reader reader = new InputStreamReader(createBOMInputStream("org/apache/commons/csv/CSVFileParser/bom.csv"), UTF_8_NAME);
241241
final CSVParser parser = CSVParser.parse(reader, CSVFormat.EXCEL.withHeader())) {
242242
parser.forEach(record -> assertNotNull(record.get("Date")));

0 commit comments

Comments
 (0)