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 2009/11/17 22:22:03 UTC

svn commit: r881534 - /incubator/lucene.net/trunk/C#/src/Test/QueryParser/TestQueryParser.cs

Author: aroush
Date: Tue Nov 17 21:22:02 2009
New Revision: 881534

URL: http://svn.apache.org/viewvc?rev=881534&view=rev
Log:
Minor cleanup, removed improper constructor and added missing test fixture.

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

Modified: incubator/lucene.net/trunk/C#/src/Test/QueryParser/TestQueryParser.cs
URL: http://svn.apache.org/viewvc/incubator/lucene.net/trunk/C%23/src/Test/QueryParser/TestQueryParser.cs?rev=881534&r1=881533&r2=881534&view=diff
==============================================================================
--- incubator/lucene.net/trunk/C#/src/Test/QueryParser/TestQueryParser.cs (original)
+++ incubator/lucene.net/trunk/C#/src/Test/QueryParser/TestQueryParser.cs Tue Nov 17 21:22:02 2009
@@ -60,6 +60,7 @@
 {
 	
 	/// <summary> Tests QueryParser.</summary>
+	[TestFixture]
 	public class TestQueryParser:LocalizedTestCase
 	{
         static System.Collections.Hashtable dataTestWithDifferentLocals = new System.Collections.Hashtable();
@@ -113,9 +114,9 @@
 			}
 		}
 		
-		public TestQueryParser(System.String name):base(name, dataTestWithDifferentLocals)
+		/*public TestQueryParser(System.String name):base(name, dataTestWithDifferentLocals)
 		{
-		}
+		}*/
 		
 		public static Analyzer qpAnalyzer = new QPTestAnalyzer();