Stylet/Bootstrappers/Tests/CastleWindsorTests.cs

71 lines
1.8 KiB
C#

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