You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by ar...@apache.org on 2008/08/08 22:15:53 UTC

svn commit: r684077 - /incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs

Author: aroush
Date: Fri Aug  8 13:15:53 2008
New Revision: 684077

URL: http://svn.apache.org/viewvc?rev=684077&view=rev
Log:
LUCENENET-141: compile errors due to removed method

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

Modified: incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/Util/LuceneTestCase.cs?rev=684077&r1=684076&r2=684077&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs Fri Aug  8 13:15:53 2008
@@ -51,6 +51,15 @@
 		{
 			ConcurrentMergeScheduler.SetTestMode();
 		}
+		
+		[TearDown]
+		public virtual void  TearDown()
+		{
+			if (ConcurrentMergeScheduler.AnyUnhandledExceptions())
+			{
+				Assert.Fail("ConcurrentMergeScheduler hit unhandled exceptions");
+			}
+		}
 
 		[Test]
 		public virtual void  TestDummy()