Inheritance: Lucene.Net.Util.LuceneTestCase
Ejemplo n.º 1
0
			private void  InitBlock(TestIndexWriterExceptions enclosingInstance)
			{
				this.enclosingInstance = enclosingInstance;
			}
Ejemplo n.º 2
0
			public IndexerThread(TestIndexWriterExceptions enclosingInstance, int i, IndexWriter writer)
			{
				InitBlock(enclosingInstance);
				Name = "Indexer " + i;
				this.writer = writer;
			}
Ejemplo n.º 3
0
			public MockIndexWriter(TestIndexWriterExceptions enclosingInstance, Directory dir, Analyzer a, bool create, MaxFieldLength mfl):base(dir, a, create, mfl)
			{
				InitBlock(enclosingInstance);
			}