mirror of https://github.com/AMT-Cheif/Stylet.git
Start writing unit tests for BootstrapperBase
This commit is contained in:
parent
3592a75723
commit
aa395d9cb5
|
@ -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();
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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" />
|
||||
|
|
Loading…
Reference in New Issue