Bamboo.Prevalence.Indexing.Tests.FullTextSearchTests.TestClear C# (CSharp) Méthode

TestClear() private méthode

private TestClear ( ) : void
Résultat void
		public void TestClear()
		{			
			_index.Clear();
			
			AssertEquals(0, ((FullTextSearchIndex)_index).Records.Length);
			AssertEquals(0, ((FullTextSearchIndex)_index).Postings.Length);
			
			AssertSearchContains(_index.Search(new FullTextSearchExpression("chocolate")));
		}