Inheritance Hierarchy
DeltaEngine.Platforms TestWithMocksOrVisually
DeltaEngine.Input.Tests TouchTests
Namespace: DeltaEngine.Input.Tests
Assembly: DeltaEngine.Input.Tests (in DeltaEngine.Input.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax
The TouchTests type exposes the following members.
Constructors
Name | Description | |
---|---|---|
![]() | TouchTests | Initializes a new instance of the TouchTests class |
Methods
Name | Description | |
---|---|---|
![]() | AdvanceTimeAndUpdateEntities | (Inherited from TestWithMocksOrVisually.) |
![]() | InitializeResolver | (Inherited from TestWithMocksOrVisually.) |
![]() | RegisterMock T | (Inherited from TestWithMocksOrVisually.) |
![]() | Resolve T | (Inherited from TestWithMocksOrVisually.) |
![]() | RunAfterFirstFrame | (Inherited from TestWithMocksOrVisually.) |
![]() | RunTestAndDisposeResolverWhenDone | (Inherited from TestWithMocksOrVisually.) |
![]() | ShowRedCircleOnTouchAtTouchPosition | |
![]() | TestPositionAndState |
Properties
Name | Description | |
---|---|---|
![]() | IsMockResolver | (Inherited from TestWithMocksOrVisually.) |
Examples
[Test] public void ShowRedCircleOnTouchAtTouchPosition() { new FontText(Font.Default, "Touch screen to show red circle", Rectangle.One); var ellipse = new Ellipse(new Rectangle(0.1f, 0.1f, 0.1f, 0.1f), Color.Red); new Command(() => TranslateOnTouch(ellipse)).Add(new TouchPressTrigger(State.Pressed)); }
[Test, CloseAfterFirstFrame] public void TestPositionAndState() { bool isTouched = false; new Command(() => isTouched = true).Add(new TouchPressTrigger(State.Pressed)); Assert.IsFalse(isTouched); var mockTouch = Resolve<Touch>() as MockTouch; if (mockTouch == null) return; //ncrunch: no coverage Assert.NotNull(mockTouch); Assert.AreEqual(State.Released, mockTouch.GetState(0)); Assert.True(mockTouch.IsAvailable); }
See Also