Add extra 'operators after collection' test to EventAction

This commit is contained in:
Antony Male 2015-02-24 12:40:39 +00:00
parent 1915758c25
commit 9552cbeeee
1 changed files with 14 additions and 0 deletions

View File

@ -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);
}
}
}