You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by di...@apache.org on 2009/12/07 19:25:49 UTC

svn commit: r888067 - /incubator/lucene.net/trunk/C#/src/Test/TestSupportClass.cs

Author: digy
Date: Mon Dec  7 18:25:49 2009
New Revision: 888067

URL: http://svn.apache.org/viewvc?rev=888067&view=rev
Log:
Changed "SupportClassTestCases.Count"  from "Fail" to "Ignore"

Modified:
    incubator/lucene.net/trunk/C#/src/Test/TestSupportClass.cs

Modified: incubator/lucene.net/trunk/C#/src/Test/TestSupportClass.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/TestSupportClass.cs?rev=888067&r1=888066&r2=888067&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/TestSupportClass.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/TestSupportClass.cs Mon Dec  7 18:25:49 2009
@@ -55,8 +55,9 @@
                     }
                 }
             }
-
-            Assert.Fail("Lucene.Net TestCases:" + countSupport + "     Other TestCases:" + countOther);
+            string msg = "Lucene.Net TestCases:" + countSupport + "     Other TestCases:" + countOther;
+            Console.WriteLine(msg);
+            Assert.Ignore("[Intentionally ignored test case] " + msg);
         }
     }