public void AnalyzerMustHavePublicCtr() { TestDelegate call = () => FieldMappingInfoBuilder.CreateAnalyzer(typeof(Private), Version.LUCENE_30); Assert.That(call, Throws.InvalidOperationException); }
public void AnalyzerMustInheritFromBase() { TestDelegate call = () => FieldMappingInfoBuilder.CreateAnalyzer(typeof(object), Version.LUCENE_30); Assert.That(call, Throws.InvalidOperationException); }