Bamboo.Prevalence.Tests.PrevalenceEngineTest.AssertTotal C# (CSharp) Method

AssertTotal() protected method

protected AssertTotal ( int amount ) : void
amount int
return void
		protected override void AssertTotal(int amount)
		{
			int total = (int)ExecuteQuery(new QueryTotal());
			AssertEquals("Total", amount, total);
		}
PrevalenceEngineTest