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