NUnitAsp

RepeaterTester Class

Tester for System.Web.UI.WebControls.Repeater. Generally, you don't test through this tester. Instead, you use the Item method to use as a container for testing controls that are inside the repeater. The ItemCount method may also be useful. This example demonstrates how to test a button that's in the third item of a repeater:

            RepeaterTester repeater = new RepeaterTester("repeater");
            ButtonTester button = new ButtonTester("button", repeater.Item(2));

For a list of all members of this type, see RepeaterTester Members.

System.Object
   Tester
      ControlTester
         AspControlTester
            NamingContainerTester
               RepeaterTester

public class RepeaterTester : NamingContainerTester

Requirements

Namespace: NUnit.Extensions.Asp.AspTester

Assembly: NUnitAsp (in NUnitAsp.dll)

See Also

RepeaterTester Members | NUnit.Extensions.Asp.AspTester Namespace