fix test failures

This commit is contained in:
Ahmed Tawila 2017-11-16 12:22:12 +02:00
parent 53074cd7f0
commit 1a368ca9f3
1 changed files with 8 additions and 0 deletions

View File

@ -8,6 +8,7 @@ import java.io.IOException;
import java.io.PrintWriter;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import com.baeldung.util.StreamUtils;
@ -20,6 +21,13 @@ public class GuavaTest {
public static final String fileName = "src/main/resources/countries.properties";
@Before
public void setup() throws Exception {
PrintWriter writer = new PrintWriter(fileName);
writer.print("UK\r\n" + "US\r\n" + "Germany\r\n");
writer.close();
}
@Test
public void whenAppendToFileUsingGuava_thenCorrect() throws IOException {
File file = new File(fileName);