Example #1
0
        public void AnalyzerMustHavePublicCtr()
        {
            TestDelegate call = () => FieldMappingInfoBuilder.CreateAnalyzer(typeof(Private), Version.LUCENE_30);

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

            Assert.That(call, Throws.InvalidOperationException);
        }