Finds and invokes a member of a test fixture, a nested type of the test fixture, or an external type.

Namespace:  Gallio.Framework.Pattern
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.610.0)

Syntax

C#
public class FixtureMemberInvoker<TOutput>
Visual Basic (Declaration)
Public Class FixtureMemberInvoker(Of TOutput)

Type Parameters

TOutput
The type of the result returned by the member invoked.

Remarks

The member is searched among the fields, the properties, and the methods. It might be a public or a non-public member. If the member belongs directly to the test fixture, it might be an instance member. Otherwise, it must be a static member.

Inheritance Hierarchy

System..::.Object
  Gallio.Framework.Pattern..::.FixtureMemberInvoker<(Of <(TOutput>)>)

See Also