C# Class Lucene.Net.Analysis.VocabularyAssert

Utility class for doing vocabulary-based stemming tests
Datei anzeigen Open project: apache/lucenenet

Public Methods

Method Description
AssertVocabulary ( Analyzer a, Stream vocOut ) : void

Run a vocabulary test against one file: tab separated.

AssertVocabulary ( Analyzer a, Stream voc, Stream @out ) : void

Run a vocabulary test against two data files.

AssertVocabulary ( Analyzer a, Stream zipFile, string vocOut ) : void

Run a vocabulary test against a tab-separated data file inside a zip file

AssertVocabulary ( Analyzer a, Stream zipFile, string voc, string @out ) : void

Run a vocabulary test against two data files inside a zip file

Method Details

AssertVocabulary() public static method

Run a vocabulary test against one file: tab separated.
public static AssertVocabulary ( Analyzer a, Stream vocOut ) : void
a Analyzer
vocOut System.IO.Stream
return void

AssertVocabulary() public static method

Run a vocabulary test against two data files.
public static AssertVocabulary ( Analyzer a, Stream voc, Stream @out ) : void
a Analyzer
voc System.IO.Stream
@out System.IO.Stream
return void

AssertVocabulary() public static method

Run a vocabulary test against a tab-separated data file inside a zip file
public static AssertVocabulary ( Analyzer a, Stream zipFile, string vocOut ) : void
a Analyzer
zipFile System.IO.Stream
vocOut string
return void

AssertVocabulary() public static method

Run a vocabulary test against two data files inside a zip file
public static AssertVocabulary ( Analyzer a, Stream zipFile, string voc, string @out ) : void
a Analyzer
zipFile System.IO.Stream
voc string
@out string
return void