C# Class NUnit.Framework.Internal.NUnitLiteTestAssemblyRunner

Default implementation of ITestAssemblyRunner
Inheritance: ITestAssemblyRunner
Show file Open project: pjcollins/Andr.Unit Class Usage Examples

Public Methods

Method Description
Load ( Assembly assembly, IDictionary settings ) : bool

Loads the tests found in an Android.NUnitLite

Load ( string assemblyName, IDictionary settings ) : bool

Loads the tests found in an Android.NUnitLite

NUnitLiteTestAssemblyRunner ( ITestAssemblyBuilder builder ) : System

Initializes a new instance of the NUnitLiteTestAssemblyRunner class.

Run ( ITestListener listener, ITestFilter filter ) : ITestResult

Run selected tests and return a test result. The test is run synchronously, and the listener interface is notified as it progresses.

Method Details

Load() public method

Loads the tests found in an Android.NUnitLite
public Load ( Assembly assembly, IDictionary settings ) : bool
assembly System.Reflection.Assembly
settings IDictionary Dictionary of option settings for loading the Android.NUnitLite
return bool

Load() public method

Loads the tests found in an Android.NUnitLite
public Load ( string assemblyName, IDictionary settings ) : bool
assemblyName string File name of the Android.NUnitLite to load
settings IDictionary Dictionary of option settings for loading the Android.NUnitLite
return bool

NUnitLiteTestAssemblyRunner() public method

Initializes a new instance of the NUnitLiteTestAssemblyRunner class.
public NUnitLiteTestAssemblyRunner ( ITestAssemblyBuilder builder ) : System
builder ITestAssemblyBuilder The builder.
return System

Run() public method

Run selected tests and return a test result. The test is run synchronously, and the listener interface is notified as it progresses.
public Run ( ITestListener listener, ITestFilter filter ) : ITestResult
listener ITestListener Interface to receive EventListener notifications.
filter ITestFilter A test filter used to select tests to be run
return ITestResult