TouchDoubleTapTriggerTests CreateWithAttributes 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 CreateWithAttributes()
Examples

[Test, CloseAfterFirstFrame]
public void CreateWithAttributes()
{
    Assert.DoesNotThrow(() => new TouchDoubleTapTrigger(new Dictionary<string, string>()));
    Assert.Throws<TouchDoubleTapTrigger.TouchDoubleTapTriggerHasNoParameters>(
        () => new TouchDoubleTapTrigger(new Dictionary<string, string> { { "a", "b" } }));
}
See Also