Castle.MonoRail.Framework.Tests.ViewComponents.DiggStylePaginationTestCase.SupportsSections C# (CSharp) Method

SupportsSections() private method

private SupportsSections ( ) : void
return void
		public void SupportsSections()
		{
			Assert.IsTrue(diggComponent.SupportsSection("startblock"), "Supports startblock Section");
			Assert.IsTrue(diggComponent.SupportsSection("endblock"), "Supports endblock Section");
			Assert.IsTrue(diggComponent.SupportsSection("link"), "Supports Links Section");
			Assert.IsFalse(diggComponent.SupportsSection("NotSupported"), "Unsupported section");
		}
	}