C# Class NUnit.Extensions.Asp.AspTester.RepeaterTester.RepeaterSeparatorTester

Tester for SeparatorTemplate. Use this tester as a container for other testers. This example demonstrates how to test a button that's in the second separator of a repeater: RepeaterTester repeater = new RepeaterTester("repeater"); ButtonTester button = new ButtonTester("button", repeater.Separator(1));
Inheritance: RepeaterTemplateTester
Show file Open project: vcsjones/NUnitAsp

Public Methods

Method Description
RepeaterSeparatorTester ( int separatorNum, RepeaterTester container ) : System

Create a tester for a specific item in a repeater.

Method Details

RepeaterSeparatorTester() public method

Create a tester for a specific item in a repeater.
public RepeaterSeparatorTester ( int separatorNum, RepeaterTester container ) : System
separatorNum int The index of the separator to test (zero-based).
container RepeaterTester The repeater tester this item is contained /// within.
return System