public void PanGestureGetScreenSpeed() { tlog.Debug(tag, $"PanGestureGetScreenSpeed START"); PanGesture a1 = new PanGesture(); float f1 = a1.GetScreenSpeed(); a1.Dispose(); tlog.Debug(tag, $"PanGestureGetScreenSpeed END (OK)"); Assert.Pass("PanGestureGetScreenSpeed"); }
public void PanGestureGetScreenSpeed() { tlog.Debug(tag, $"PanGestureGetScreenSpeed START"); var testingTarget = new PanGesture(Gesture.StateType.Finished); Assert.IsNotNull(testingTarget, "Can't create success object Hover"); Assert.IsInstanceOf <PanGesture>(testingTarget, "Should be an instance of PanGesture type."); tlog.Debug(tag, "GetScreenSpeed : " + testingTarget.GetScreenSpeed()); testingTarget.Dispose(); tlog.Debug(tag, $"PanGestureGetScreenSpeed END (OK)"); Assert.Pass("PanGestureGetScreenSpeed"); }