Start writing unit tests for BootstrapperBase

This commit is contained in:
Antony Male 2014-03-12 13:09:50 +00:00
parent 3592a75723
commit aa395d9cb5
3 changed files with 54 additions and 1 deletions

View File

@ -39,7 +39,7 @@ namespace Stylet
public BootstrapperBase()
{
var rc = new ResourceDictionary() { Source = new Uri("/Stylet;component/StyletResourceDictionary.xaml", UriKind.Relative) };
var rc = new ResourceDictionary() { Source = new Uri("pack://application:,,,/Stylet;component/StyletResourceDictionary.xaml", UriKind.Absolute) };
this.MergedDictionaries.Add(rc);
this.Start();

View File

@ -0,0 +1,52 @@
using NUnit.Framework;
using Stylet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
namespace StyletUnitTests
{
[TestFixture]
public class BootstrapperBaseTests
{
private Application application;
class TestBootstrapper : BootstrapperBase<object>
{
// Expose this
public new Application Application { get { return base.Application; } }
protected override object GetInstance(Type service, string key = null)
{
throw new NotImplementedException();
}
protected override IEnumerable<object> GetAllInstances(Type service)
{
throw new NotImplementedException();
}
protected override void BuildUp(object instance)
{
throw new NotImplementedException();
}
}
[SetUp]
public void SetUp()
{
this.application = new Application();
}
[Test]
public void CapturesCurrentApplication()
{
var bootstrapper = new TestBootstrapper();
Assert.AreEqual(this.application, bootstrapper.Application);
}
}
}

View File

@ -53,6 +53,7 @@
<ItemGroup>
<Compile Include="ActionExtensionTests.cs" />
<Compile Include="BindableCollectionTests.cs" />
<Compile Include="BootstrapperBaseTests.cs" />
<Compile Include="EventAggregatorTests.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PropertyChangedExtensionsTests.cs" />