C# Класс NUnit.Extensions.Asp.AspTester.RegularExpressionValidatorTester

Tester for System.Web.UI.WebControls.RegularExpressionValidator
Наследование: ValidatorTester
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
RegularExpressionValidatorTester ( string aspId ) : System

Create a tester for a top-level control. Use this constructor for testing most controls. Testers created with this constructor will test pages loaded by the HttpClient.Default HttpClient.

RegularExpressionValidatorTester ( string aspId, Tester container ) : System

Create a tester for a nested control. Use this constructor when the control you are testing is nested within another control, such as a DataGrid or UserControl. You should also use this constructor when you're not using the HttpClient.Default HttpClient.

Описание методов

RegularExpressionValidatorTester() публичный Метод

Create a tester for a top-level control. Use this constructor for testing most controls. Testers created with this constructor will test pages loaded by the HttpClient.Default HttpClient.

public RegularExpressionValidatorTester ( string aspId ) : System
aspId string The ID of the control to test (look in the /// page's ASP.NET source code for the ID).
Результат System

RegularExpressionValidatorTester() публичный Метод

Create a tester for a nested control. Use this constructor when the control you are testing is nested within another control, such as a DataGrid or UserControl. You should also use this constructor when you're not using the HttpClient.Default HttpClient.
public RegularExpressionValidatorTester ( string aspId, Tester container ) : System
aspId string The ID of the control to test (look in the /// page's ASP.NET source code for the ID).
container Tester A tester for the control's container. /// (In the page's ASP.NET source code, look for the tag that the /// control is nested in. That's probably the control's /// container.)
Результат System