Author: ggregory
Date: Tue Jan 19 06:21:35 2016
New Revision: 1725444

URL: http://svn.apache.org/viewvc?rev=1725444&view=rev
Log:
Ignore experimental tests.

Modified:
    
commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java

Modified: 
commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java?rev=1725444&r1=1725443&r2=1725444&view=diff
==============================================================================
--- 
commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java
 (original)
+++ 
commons/proper/csv/trunk/src/test/java/org/apache/commons/csv/CSVPrinterTest.java
 Tue Jan 19 06:21:35 2016
@@ -38,6 +38,7 @@ import java.util.List;
 import java.util.Random;
 
 import org.apache.commons.lang3.ObjectUtils;
+import org.junit.Ignore;
 import org.junit.Test;
 
 /**
@@ -233,6 +234,7 @@ public class CSVPrinterTest {
     }
 
     @Test
+    @Ignore
     public void testJira135All() throws IOException {
         CSVFormat format = 
CSVFormat.DEFAULT.withRecordSeparator('\n').withQuote('"').withEscape('\\');
         StringWriter sw = new StringWriter();
@@ -250,6 +252,7 @@ public class CSVPrinterTest {
     }
     
     @Test
+    @Ignore
     public void testJira135_part3() throws IOException {
         CSVFormat format = 
CSVFormat.DEFAULT.withRecordSeparator('\n').withQuote('"').withEscape('\\');
         StringWriter sw = new StringWriter();
@@ -265,6 +268,7 @@ public class CSVPrinterTest {
     }
     
     @Test
+    @Ignore
     public void testJira135_part2() throws IOException {
         CSVFormat format = 
CSVFormat.DEFAULT.withRecordSeparator('\n').withQuote('"').withEscape('\\');
         StringWriter sw = new StringWriter();
@@ -280,6 +284,7 @@ public class CSVPrinterTest {
     }
     
     @Test
+    @Ignore
     public void testJira135_part1() throws IOException {
         CSVFormat format = 
CSVFormat.DEFAULT.withRecordSeparator('\n').withQuote('"').withEscape('\\');
         StringWriter sw = new StringWriter();


Reply via email to