]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - basic/runtime/org.argeo.basic.nodeps/src/test/java/org/argeo/util/CsvParserTestCase.java
Deactivate encryption tests
[lgpl/argeo-commons.git] / basic / runtime / org.argeo.basic.nodeps / src / test / java / org / argeo / util / CsvParserTestCase.java
index 5a8e4a8b8cd2bb8186e42a193f7e66761306455b..1e032357a2d6376e004fe04eef5596f810559d7c 100644 (file)
@@ -8,7 +8,7 @@ import junit.framework.TestCase;
 
 public class CsvParserTestCase extends TestCase {
        public void testParse() throws Exception {
-               String toParse = "Header1,\"Header2\",Header3,\"Header4\"\n"
+               String toParse = "Header1,\"Header\n2\",Header3,\"Header4\"\n"
                                + "Col1,\"Col\n2\",Col3,\"\"\"Col4\"\"\"\n"
                                + "Col1,\"Col\n2\",Col3,\"\"\"Col4\"\"\"\n"
                                + "Col1,\"Col\n2\",Col3,\"\"\"Col4\"\"\"\n";
@@ -30,4 +30,5 @@ public class CsvParserTestCase extends TestCase {
                csvParser.parse(in);
                in.close();
        }
+
 }