Stylet/Bootstrappers/Tests/NinjectTests.cs

71 lines
1.7 KiB
C#
Raw Normal View History

using Ninject;
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Bootstrappers.Tests
{
public class MyNinjectBootstrapper : NinjectBootstrapper<TestRootViewModel>, ITestBootstrapper
{
public List<string> ConfigureLog { get; set; }
public int DisposeCount { get; private set; }
public MyNinjectBootstrapper()
{
this.ConfigureLog = new List<string>();
}
protected override void Configure()
{
base.Configure();
this.ConfigureLog.Add("Configure");
}
protected override void DefaultConfigureIoC(IKernel kernel)
{
base.DefaultConfigureIoC(kernel);
this.ConfigureLog.Add("DefaultConfigureIoC");
}
protected override void ConfigureIoC(IKernel kernel)
{
base.ConfigureIoC(kernel);
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="Ninject")]
public class NinjectTests : BootstrapperTests<MyNinjectBootstrapper>
{
public NinjectTests()
{
this.Autobinds = true;
}
public override MyNinjectBootstrapper CreateBootstrapper()
{
return new MyNinjectBootstrapper();
}
}
}