Bamboo.Prevalence.Indexing.Tests.FullTextSearchTests.TestClear C# (CSharp) 메소드

TestClear() 개인적인 메소드

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