Bamboo.Prevalence.Indexing.Tests.FullTextSearchTests.TestClear C# (CSharp) Method

TestClear() private method

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