Return-Path: Delivered-To: apmail-incubator-lucene-net-commits-archive@locus.apache.org Received: (qmail 43043 invoked from network); 8 Aug 2008 02:42:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 8 Aug 2008 02:42:29 -0000 Received: (qmail 85616 invoked by uid 500); 8 Aug 2008 02:42:28 -0000 Delivered-To: apmail-incubator-lucene-net-commits-archive@incubator.apache.org Received: (qmail 85593 invoked by uid 500); 8 Aug 2008 02:42:28 -0000 Mailing-List: contact lucene-net-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: lucene-net-dev@incubator.apache.org Delivered-To: mailing list lucene-net-commits@incubator.apache.org Received: (qmail 85582 invoked by uid 99); 8 Aug 2008 02:42:28 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Aug 2008 19:42:28 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 08 Aug 2008 02:41:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B27B9238898B; Thu, 7 Aug 2008 19:41:57 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r683804 - /incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs Date: Fri, 08 Aug 2008 02:41:57 -0000 To: lucene-net-commits@incubator.apache.org From: aroush@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080808024157.B27B9238898B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: aroush Date: Thu Aug 7 19:41:57 2008 New Revision: 683804 URL: http://svn.apache.org/viewvc?rev=683804&view=rev Log: Made the class non abstract and added a dummy test so NUnit doesn't complain. 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=683804&r1=683803&r2=683804&view=diff ============================================================================== --- incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs (original) +++ incubator/lucene.net/trunk/C#/src/Test/Util/LuceneTestCase.cs Thu Aug 7 19:41:57 2008 @@ -35,7 +35,7 @@ /// [TestFixture] - public abstract class LuceneTestCase + public /*abstract*/ class LuceneTestCase { public LuceneTestCase() : base() @@ -51,14 +51,11 @@ { ConcurrentMergeScheduler.SetTestMode(); } - - [TearDown] - public virtual void TearDown() + + [Test] + public virtual void TestDummy() { - if (ConcurrentMergeScheduler.AnyUnhandledExceptions()) - { - Assert.Fail("ConcurrentMergeScheduler hit unhandled exceptions"); - } + // So that NUnit doesn't complain } } } \ No newline at end of file