C# Class Adf.Core.Test.TestManager

Mostra file Open project: NLADP/ADF

Private Properties

Property Type Description

Public Methods

Method Description
Clear ( ) : void

Clear registry.

FindItems ( TestItemType type, TestAction action ) : IEnumerable
FindItems ( TestItemType type, object subject, TestAction action ) : IEnumerable
IsNotPresent ( TestItemType type, TestAction action ) : bool

Running a test, by checking if the requested item is not in the registry.

IsNotPresent ( TestItemType type, object subject, TestAction action ) : bool

Running a test, by checking if the requested item is not in the registry.

IsPresent ( TestItemType type, TestAction action ) : bool

Running a test, by checking if the requested item is in the registry.

IsPresent ( TestItemType type, object subject ) : bool

Running a test, by checking if the requested item is in the registry.

IsPresent ( TestItemType type, object subject, TestAction action ) : bool

Running a test, by checking if the requested item is in the registry.

Register ( TestItemType type, TestAction action ) : void

Register a test item.

Register ( TestItemType type, object subject ) : void

Register a test item.

Register ( TestItemType type, object subject, TestAction action ) : void

Register a test item.

Method Details

Clear() public static method

Clear registry.
public static Clear ( ) : void
return void

FindItems() public static method

public static FindItems ( TestItemType type, TestAction action ) : IEnumerable
type TestItemType
action TestAction
return IEnumerable

FindItems() public static method

public static FindItems ( TestItemType type, object subject, TestAction action ) : IEnumerable
type TestItemType
subject object
action TestAction
return IEnumerable

IsNotPresent() public static method

Running a test, by checking if the requested item is not in the registry.
public static IsNotPresent ( TestItemType type, TestAction action ) : bool
type TestItemType Type of test item
action TestAction Message to be passed
return bool

IsNotPresent() public static method

Running a test, by checking if the requested item is not in the registry.
public static IsNotPresent ( TestItemType type, object subject, TestAction action ) : bool
type TestItemType Type of test item
subject object Subject
action TestAction Action to be passed
return bool

IsPresent() public static method

Running a test, by checking if the requested item is in the registry.
public static IsPresent ( TestItemType type, TestAction action ) : bool
type TestItemType Type of test item
action TestAction Message to be passed
return bool

IsPresent() public static method

Running a test, by checking if the requested item is in the registry.
public static IsPresent ( TestItemType type, object subject ) : bool
type TestItemType Type of test item
subject object Message to be passed
return bool

IsPresent() public static method

Running a test, by checking if the requested item is in the registry.
public static IsPresent ( TestItemType type, object subject, TestAction action ) : bool
type TestItemType Type of test item
subject object Subject
action TestAction Action to be passed
return bool

Register() public static method

Register a test item.
public static Register ( TestItemType type, TestAction action ) : void
type TestItemType Type of test item
action TestAction Message to be passed
return void

Register() public static method

Register a test item.
public static Register ( TestItemType type, object subject ) : void
type TestItemType Type of test item
subject object Subject
return void

Register() public static method

Register a test item.
public static Register ( TestItemType type, object subject, TestAction action ) : void
type TestItemType Type of test item
subject object Subject
action TestAction Message to be passed
return void