@@ -2815,7 +2815,7 @@ public void testReadFileToString_IOExceptionOnPosixFileSystem() throws Exception
2815
2815
@ Test
2816
2816
public void testReadFileToStringWithDefaultEncoding () throws Exception {
2817
2817
final File file = new File (tempDirFile , "read.obj" );
2818
- final String fixture = "Hello / u1234" ;
2818
+ final String fixture = "Hello \ u1234 " ;
2819
2819
Files .write (file .toPath (), fixture .getBytes ());
2820
2820
2821
2821
assertEquals (fixture , FileUtils .readFileToString (file ));
@@ -2824,18 +2824,18 @@ public void testReadFileToStringWithDefaultEncoding() throws Exception {
2824
2824
@ Test
2825
2825
public void testReadFileToStringWithEncoding () throws Exception {
2826
2826
final File file = new File (tempDirFile , "read.obj" );
2827
- final byte [] text = "Hello / u1234" .getBytes (StandardCharsets .UTF_8 );
2827
+ final byte [] text = "Hello \ u1234 " .getBytes (StandardCharsets .UTF_8 );
2828
2828
Files .write (file .toPath (), text );
2829
2829
2830
2830
final String data = FileUtils .readFileToString (file , "UTF8" );
2831
- assertEquals ("Hello / u1234" , data );
2831
+ assertEquals ("Hello \ u1234 " , data );
2832
2832
}
2833
2833
2834
2834
@ Test
2835
2835
public void testReadLines () throws Exception {
2836
2836
final File file = TestUtils .newFile (tempDirFile , "lines.txt" );
2837
2837
try {
2838
- final String [] data = {"hello" , "/ u1234" , "" , "this is" , "some text" };
2838
+ final String [] data = {"hello" , "\ u1234 " , "" , "this is" , "some text" };
2839
2839
TestUtils .createLineFileUtf8 (file , data );
2840
2840
2841
2841
final List <String > lines = FileUtils .readLines (file , UTF_8 );
@@ -3270,16 +3270,16 @@ public void testWriteByteArrayToFile_WithOffsetAndLength_WithAppendOptionTrue_Sh
3270
3270
@ Test
3271
3271
public void testWriteCharSequence1 () throws Exception {
3272
3272
final File file = new File (tempDirFile , "write.txt" );
3273
- FileUtils .write (file , "Hello / u1234" , "UTF8" );
3274
- final byte [] text = "Hello / u1234" .getBytes (StandardCharsets .UTF_8 );
3273
+ FileUtils .write (file , "Hello \ u1234 " , "UTF8" );
3274
+ final byte [] text = "Hello \ u1234 " .getBytes (StandardCharsets .UTF_8 );
3275
3275
TestUtils .assertEqualContent (text , file );
3276
3276
}
3277
3277
3278
3278
@ Test
3279
3279
public void testWriteCharSequence2 () throws Exception {
3280
3280
final File file = new File (tempDirFile , "write.txt" );
3281
- FileUtils .write (file , "Hello / u1234" , (String ) null );
3282
- final byte [] text = "Hello / u1234" .getBytes ();
3281
+ FileUtils .write (file , "Hello \ u1234 " , (String ) null );
3282
+ final byte [] text = "Hello \ u1234 " .getBytes ();
3283
3283
TestUtils .assertEqualContent (text , file );
3284
3284
}
3285
3285
@@ -3489,8 +3489,8 @@ public void testWriteStringToFile_WithAppendOptionTrue_ShouldNotDeletePreviousFi
3489
3489
@ Test
3490
3490
public void testWriteStringToFileIntoNonExistentSubdir () throws Exception {
3491
3491
final File file = new File (tempDirFile , "subdir/write.txt" );
3492
- FileUtils .writeStringToFile (file , "Hello / u1234" , (Charset ) null );
3493
- final byte [] text = "Hello / u1234" .getBytes ();
3492
+ FileUtils .writeStringToFile (file , "Hello \ u1234 " , (Charset ) null );
3493
+ final byte [] text = "Hello \ u1234 " .getBytes ();
3494
3494
TestUtils .assertEqualContent (text , file );
3495
3495
}
3496
3496
@@ -3505,16 +3505,16 @@ public void testWriteStringToFileIntoNonExistentSubdir() throws Exception {
3505
3505
public void testWriteStringToFileIntoSymlinkedDir () throws Exception {
3506
3506
final Path symlinkDir = createTempSymbolicLinkedRelativeDir ().getLeft ();
3507
3507
final File file = symlinkDir .resolve ("file" ).toFile ();
3508
- FileUtils .writeStringToFile (file , "Hello / u1234" , StandardCharsets .UTF_8 );
3509
- final byte [] text = "Hello / u1234" .getBytes ();
3508
+ FileUtils .writeStringToFile (file , "Hello \ u1234 " , StandardCharsets .UTF_8 );
3509
+ final byte [] text = "Hello \ u1234 " .getBytes ();
3510
3510
TestUtils .assertEqualContent (text , file );
3511
3511
}
3512
3512
3513
3513
@ Test
3514
3514
public void testWriteStringToFileWithCharset () throws Exception {
3515
3515
final File file = new File (tempDirFile , "write.txt" );
3516
- FileUtils .writeStringToFile (file , "Hello / u1234" , "UTF8" );
3517
- final byte [] text = "Hello / u1234" .getBytes (StandardCharsets .UTF_8 );
3516
+ FileUtils .writeStringToFile (file , "Hello \ u1234 " , "UTF8" );
3517
+ final byte [] text = "Hello \ u1234 " .getBytes (StandardCharsets .UTF_8 );
3518
3518
TestUtils .assertEqualContent (text , file );
3519
3519
}
3520
3520
@@ -3546,16 +3546,16 @@ public void testWriteStringToFileWithEncoding_WithAppendOptionTrue_ShouldNotDele
3546
3546
@ Test
3547
3547
public void testWriteStringToFileWithNullCharset () throws Exception {
3548
3548
final File file = new File (tempDirFile , "write.txt" );
3549
- FileUtils .writeStringToFile (file , "Hello / u1234" , (Charset ) null );
3550
- final byte [] text = "Hello / u1234" .getBytes ();
3549
+ FileUtils .writeStringToFile (file , "Hello \ u1234 " , (Charset ) null );
3550
+ final byte [] text = "Hello \ u1234 " .getBytes ();
3551
3551
TestUtils .assertEqualContent (text , file );
3552
3552
}
3553
3553
3554
3554
@ Test
3555
3555
public void testWriteStringToFileWithNullStringCharset () throws Exception {
3556
3556
final File file = new File (tempDirFile , "write.txt" );
3557
- FileUtils .writeStringToFile (file , "Hello / u1234" , (String ) null );
3558
- final byte [] text = "Hello / u1234" .getBytes ();
3557
+ FileUtils .writeStringToFile (file , "Hello \ u1234 " , (String ) null );
3558
+ final byte [] text = "Hello \ u1234 " .getBytes ();
3559
3559
TestUtils .assertEqualContent (text , file );
3560
3560
}
3561
3561
0 commit comments