MouseZoomTriggerTests UsingParametersForMouseZoomTriggerShouldThrowException Method Delta Engine Documentation

Namespace: DeltaEngine.Input.Tests
Assembly: DeltaEngine.Input.Tests (in DeltaEngine.Input.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void UsingParametersForMouseZoomTriggerShouldThrowException()
Examples

[Test, CloseAfterFirstFrame]
public void UsingParametersForMouseZoomTriggerShouldThrowException()
{
    Assert.Throws<MouseZoomTrigger.MouseZoomTriggerHasNoParameters>(
        () => new MouseZoomTrigger(new Dictionary<string, string> { { "Bla", "DeltaEngine" } }));
}
See Also