MouseDragTriggerTests Create 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 Create()
Examples

[Test]
public void DragMouseToCreateRectangles()
{
    DragToCreateRectangles(new MouseDragTrigger());
}
[Test, CloseAfterFirstFrame]
public void Create()
{
    Assert.AreEqual(MouseButton.Left, new MouseDragTrigger().Button);
    Assert.AreEqual(MouseButton.Right, new MouseDragTrigger(MouseButton.Right).Button);
}
[Test, CloseAfterFirstFrame]
public void CreateFromAttributes()
{
    Assert.AreEqual(MouseButton.Left,
        new MouseDragTrigger(new Dictionary<string, string>()).Button);
    Assert.AreEqual(MouseButton.Right,
        new MouseDragTrigger(new Dictionary<string, string> { { "Button", "Right" } }).Button);
}
See Also