This interface defines a method invoker object.

Namespace:  MbUnit.Core.Invokers
Assembly:  MbUnit.Framework (in MbUnit.Framework.dll) Version: 2.4.2.1514 (2.4.2.1514)

Syntax

C#
public interface IRunInvoker
Visual Basic (Declaration)
Public Interface IRunInvoker

Remarks

When processing the test fixture, the tests are splitted down to a tree IRunInvoker instance where each IRunInvoker denotes the invokation of a fixture method, or a special processing of the fixture methods.

The TestFixtureAttribute derived fixture define their logic by returning an IRun instance. This IRun instance is the generator for IRunInvoker instances.

See Also