From a4e1e94702d7652e72bcb33311a332d0feb65fe8 Mon Sep 17 00:00:00 2001 From: "Christian P. MOMON" Date: Mon, 1 Dec 2014 16:33:38 +0100 Subject: [PATCH] Add FileTools methods to load URL file. --- test/fr/devinsy/util/FileToolsTest.java | 22 ++++++++++++++++++++++ test/fr/devinsy/util/lines.txt | 4 ++++ 2 files changed, 26 insertions(+) create mode 100644 test/fr/devinsy/util/lines.txt diff --git a/test/fr/devinsy/util/FileToolsTest.java b/test/fr/devinsy/util/FileToolsTest.java index 33640ae..42ed2c5 100644 --- a/test/fr/devinsy/util/FileToolsTest.java +++ b/test/fr/devinsy/util/FileToolsTest.java @@ -18,6 +18,8 @@ */ package fr.devinsy.util; +import java.io.IOException; + import org.apache.log4j.BasicConfigurator; import org.apache.log4j.Level; import org.apache.log4j.Logger; @@ -47,6 +49,26 @@ public class FileToolsTest * */ @Test + public void loadToStringListURL01() throws IOException + { + // + logger.debug("===== test starting..."); + // + StringList source = FileTools.loadToStringList(FileTools.class.getResource("/fr/devinsy/util/lines.txt")); + + // + Assert.assertEquals(4, source.size()); + Assert.assertEquals("trois", source.get(3 - 1)); + + // + logger.debug("===== test done."); + } + + /** + * @throws IOException + * + */ + @Test public void testGetExtension() { // diff --git a/test/fr/devinsy/util/lines.txt b/test/fr/devinsy/util/lines.txt new file mode 100644 index 0000000..de1c537 --- /dev/null +++ b/test/fr/devinsy/util/lines.txt @@ -0,0 +1,4 @@ +un +deux +trois +quatre \ No newline at end of file