mirror of https://github.com/AMT-Cheif/Stylet.git
Add extra 'operators after collection' test to EventAction
This commit is contained in:
parent
1915758c25
commit
9552cbeeee
|
@ -214,5 +214,19 @@ namespace StyletUnitTests
|
|||
|
||||
Assert.IsFalse(weakView.IsAlive);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void OperatesAfterCollection()
|
||||
{
|
||||
var view = new DependencyObject();
|
||||
var cmd = new EventAction(view, this.eventInfo.EventHandlerType, "DoSomething", ActionUnavailableBehaviour.Throw, ActionUnavailableBehaviour.Throw);
|
||||
|
||||
GC.Collect();
|
||||
|
||||
View.SetActionTarget(view, this.target);
|
||||
|
||||
cmd.GetDelegate().DynamicInvoke(null, null);
|
||||
Assert.IsTrue(this.target.DoSomethingCalled);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue