Skip to content

Commit 777e856

Browse files
committed
Better test method name
1 parent 4988e4b commit 777e856

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

src/test/java/org/apache/commons/io/FileUtilsTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ private void openOutputStream_noParent(final boolean createFile) throws Exceptio
299299
assertNull(file.getParentFile());
300300
try {
301301
if (createFile) {
302-
TestUtils.createLineBasedFile(file, new String[]{"Hello"});
302+
TestUtils.createLineFileUtf8(file, new String[]{"Hello"});
303303
}
304304
try (FileOutputStream out = FileUtils.openOutputStream(file)) {
305305
out.write(0);
@@ -361,7 +361,7 @@ public void setUp() throws Exception {
361361
@Test
362362
public void test_openInputStream_exists() throws Exception {
363363
final File file = new File(tempDirFile, "test.txt");
364-
TestUtils.createLineBasedFile(file, new String[]{"Hello"});
364+
TestUtils.createLineFileUtf8(file, new String[]{"Hello"});
365365
try (FileInputStream in = FileUtils.openInputStream(file)) {
366366
assertEquals('H', in.read());
367367
}
@@ -383,7 +383,7 @@ public void test_openInputStream_notExists() {
383383
@Test
384384
public void test_openOutputStream_exists() throws Exception {
385385
final File file = new File(tempDirFile, "test.txt");
386-
TestUtils.createLineBasedFile(file, new String[]{"Hello"});
386+
TestUtils.createLineFileUtf8(file, new String[]{"Hello"});
387387
try (FileOutputStream out = FileUtils.openOutputStream(file)) {
388388
out.write(0);
389389
}
@@ -2836,7 +2836,7 @@ public void testReadLines() throws Exception {
28362836
final File file = TestUtils.newFile(tempDirFile, "lines.txt");
28372837
try {
28382838
final String[] data = {"hello", "/u1234", "", "this is", "some text"};
2839-
TestUtils.createLineBasedFile(file, data);
2839+
TestUtils.createLineFileUtf8(file, data);
28402840

28412841
final List<String> lines = FileUtils.readLines(file, UTF_8);
28422842
assertEquals(Arrays.asList(data), lines);

src/test/java/org/apache/commons/io/IOUtilsTest.java

+5-5
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ public void testReadLines_CharSequence() throws IOException {
10211021
CharSequence csq = null;
10221022
try {
10231023
final String[] data = {"hello", "/u1234", "", "this is", "some text"};
1024-
TestUtils.createLineBasedFile(file, data);
1024+
TestUtils.createLineFileUtf8(file, data);
10251025
csq = new String(Files.readAllBytes(file.toPath()), StandardCharsets.UTF_8);
10261026
final List<String> lines = IOUtils.readLines(csq);
10271027
assertEquals(Arrays.asList(data), lines);
@@ -1036,7 +1036,7 @@ public void testReadLines_CharSequenceAsStringBuilder() throws IOException {
10361036
StringBuilder csq = null;
10371037
try {
10381038
final String[] data = {"hello", "/u1234", "", "this is", "some text"};
1039-
TestUtils.createLineBasedFile(file, data);
1039+
TestUtils.createLineFileUtf8(file, data);
10401040
csq = new StringBuilder(new String(Files.readAllBytes(file.toPath()), StandardCharsets.UTF_8));
10411041
final List<String> lines = IOUtils.readLines(csq);
10421042
assertEquals(Arrays.asList(data), lines);
@@ -1051,7 +1051,7 @@ public void testReadLines_InputStream() throws Exception {
10511051
InputStream in = null;
10521052
try {
10531053
final String[] data = {"hello", "world", "", "this is", "some text"};
1054-
TestUtils.createLineBasedFile(file, data);
1054+
TestUtils.createLineFileUtf8(file, data);
10551055

10561056
in = Files.newInputStream(file.toPath());
10571057
final List<String> lines = IOUtils.readLines(in);
@@ -1069,7 +1069,7 @@ public void testReadLines_InputStream_String() throws Exception {
10691069
InputStream in = null;
10701070
try {
10711071
final String[] data = {"hello", "/u1234", "", "this is", "some text"};
1072-
TestUtils.createLineBasedFile(file, data);
1072+
TestUtils.createLineFileUtf8(file, data);
10731073

10741074
in = Files.newInputStream(file.toPath());
10751075
final List<String> lines = IOUtils.readLines(in, UTF_8);
@@ -1087,7 +1087,7 @@ public void testReadLines_Reader() throws Exception {
10871087
Reader in = null;
10881088
try {
10891089
final String[] data = {"hello", "/u1234", "", "this is", "some text"};
1090-
TestUtils.createLineBasedFile(file, data);
1090+
TestUtils.createLineFileUtf8(file, data);
10911091
in = new InputStreamReader(Files.newInputStream(file.toPath()));
10921092
final List<String> lines = IOUtils.readLines(in);
10931093
assertEquals(Arrays.asList(data), lines);

src/test/java/org/apache/commons/io/test/TestUtils.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public static void createFile(final Path file, final long size) throws IOExcepti
184184
}
185185
}
186186

187-
public static void createLineBasedFile(final File file, final String[] data) throws IOException {
187+
public static void createLineFileUtf8(final File file, final String[] data) throws IOException {
188188
if (file.getParentFile() != null && !file.getParentFile().exists()) {
189189
throw new IOException("Cannot create file " + file + " as the parent directory does not exist");
190190
}

0 commit comments

Comments
 (0)