StatLight.Client.Harness.Hosts.MSTest.UnitTestProviders.MSTest.UnitTestFrameworkAssembly.UnitTestFrameworkAssembly C# (CSharp) Method

UnitTestFrameworkAssembly() public method

Creates a new unit test assembly wrapper.
public UnitTestFrameworkAssembly ( IUnitTestProvider provider, object unitTestHarness, Assembly assembly ) : Microsoft.Silverlight.Testing.UnitTesting.Harness
provider IUnitTestProvider Unit test metadata provider.
unitTestHarness object A reference to the unit test harness.
assembly System.Reflection.Assembly Assembly reflection object.
return Microsoft.Silverlight.Testing.UnitTesting.Harness
        public UnitTestFrameworkAssembly(IUnitTestProvider provider, object unitTestHarness, Assembly assembly)
            : base(provider,unitTestHarness,assembly)
        {
            _init = new LazyDynamicAssemblyMethodInfo(base.Assembly, ProviderAttributes.AssemblyInitialize);
            _cleanup = new LazyDynamicAssemblyMethodInfo(base.Assembly, ProviderAttributes.AssemblyCleanup);
        }