File tree Expand file tree Collapse file tree
src/test/java/org/apache/commons/csv Expand file tree Collapse file tree Original file line number Diff line number Diff 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" )));
You can’t perform that action at this time.
0 commit comments