Registers a custom assembly resolver.

Namespace:  MbUnit.Framework
Assembly:  MbUnit (in MbUnit.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
public sealed class AssemblyResolverAttribute : TestAssemblyInitializationAttribute
Visual Basic (Declaration)
Public NotInheritable Class AssemblyResolverAttribute _
	Inherits TestAssemblyInitializationAttribute

Remarks

A custom assembly resolver allows a test assembly to augment the default assembly loading policy with custom rules.

To create a custom assembly resolver, define a resolver class that implement the IAssemblyResolver interface then apply the AssemblyResolverAttribute to the test assembly at the assembly level.

Inheritance Hierarchy

System..::.Object
  System..::.Attribute
    Gallio.Framework.Pattern..::.TestAssemblyInitializationAttribute
      MbUnit.Framework..::.AssemblyResolverAttribute

See Also