mirror of https://github.com/AMT-Cheif/Stylet.git
Finish off the screen unit tests
This commit is contained in:
parent
20509d9c77
commit
3b287e55e3
|
@ -150,7 +150,7 @@ namespace Stylet
|
|||
{
|
||||
var conductor = this.Parent as IChildDelegate;
|
||||
if (conductor != null)
|
||||
conductor.CloseItem(this);
|
||||
conductor.CloseItem(this, dialogResult);
|
||||
else
|
||||
throw new InvalidOperationException(String.Format("Unable to close ViewModel {0} as it must have a conductor as a parent (note that windows and dialogs automatically have such a parent)", this.GetType().Name));
|
||||
}
|
||||
|
|
|
@ -197,5 +197,41 @@ namespace StyletUnitTests
|
|||
((IViewAware)this.screen).AttachView(view);
|
||||
Assert.Throws<Exception>(() => ((IViewAware)this.screen).AttachView(view));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void SettingParentRaisesPropertyChange()
|
||||
{
|
||||
var parent = new object();
|
||||
string changedProperty = null;
|
||||
this.screen.PropertyChanged += (o, e) => changedProperty = e.PropertyName;
|
||||
this.screen.Parent = parent;
|
||||
|
||||
Assert.AreEqual(parent, this.screen.Parent);
|
||||
Assert.AreEqual("Parent", changedProperty);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void CanCloseAsyncReturnsCompletedTrueTask()
|
||||
{
|
||||
var task = this.screen.CanCloseAsync();
|
||||
Assert.IsTrue(task.IsCompleted);
|
||||
Assert.IsTrue(task.Result);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TryCloseThrowsIfParentIsNotIChildDelegate()
|
||||
{
|
||||
this.screen.Parent = new object();
|
||||
Assert.Throws<InvalidOperationException>(() => this.screen.TryClose());
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TryCloseCallsParentCloseItemPassingDialogResult()
|
||||
{
|
||||
var parent = new Mock<IChildDelegate>();
|
||||
screen.Parent = parent.Object;
|
||||
this.screen.TryClose(true);
|
||||
parent.Verify(x => x.CloseItem(this.screen, true));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue