using NUnit.Framework; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Bootstrappers.Tests { public class MyNoIocContainerBootstrapper : NoIoCContainerBootstrapper, ITestBootstrapper { public List ConfigureLog { get; set; } public int DisposeCount { get; private set; } public MyNoIocContainerBootstrapper() { this.ConfigureLog = new List(); } protected override object RootViewModel { get { return new TestRootViewModel(); } } protected override void Configure() { base.Configure(); this.ConfigureLog.Add("Configure"); } protected override void DefaultConfigureContainer() { base.DefaultConfigureContainer(); this.ConfigureLog.Add("DefaultConfigureIoC"); } protected override void ConfigureContainer() { base.ConfigureContainer(); this.ConfigureLog.Add("ConfigureIoC"); } public new object GetInstance(Type type) { return base.GetInstance(type); } public new void ConfigureBootstrapper() { base.ConfigureBootstrapper(); } public override void Dispose() { base.Dispose(); this.DisposeCount++; } } [TestFixture(Category = "NoIoCContainer")] public class NoIoCContainerTests : BootstrapperTests { public NoIoCContainerTests() { this.Autobinds = false; } public override MyNoIocContainerBootstrapper CreateBootstrapper() { return new MyNoIocContainerBootstrapper(); } } }