MouseFlickTriggerTests Creation 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 Creation()
Examples

[Test]
public void Creation()
{
    Assert.DoesNotThrow(() => new MouseFlickTrigger());
    Assert.Throws<MouseFlickTrigger.MouseFlickTriggerHasNoParameters>(
        () => new MouseFlickTrigger(new Dictionary<string, string> { { "Button", "Left" } }));
}
See Also