public void TouchGetPressure() { tlog.Debug(tag, $"TouchGetPressure START"); Touch a1 = new Touch(); float f1 = a1.GetPressure(2); a1.Dispose(); tlog.Debug(tag, $"TouchGetPressure END (OK)"); Assert.Pass("TouchGetPressure"); }
public void TouchGetTouchFromPtr() { tlog.Debug(tag, $"TouchGetTouchFromPtr START"); Touch a1 = new Touch(); Touch a2 = Touch.GetTouchFromPtr(Touch.getCPtr(a1).Handle); a1.Dispose(); tlog.Debug(tag, $"TouchGetTouchFromPtr END (OK)"); Assert.Pass("TouchGetTouchFromPtr"); }
public void TouchGetMouseButton() { tlog.Debug(tag, $"TouchGetMouseButton START"); Touch a1 = new Touch(); MouseButton b1 = a1.GetMouseButton(2); a1.Dispose(); tlog.Debug(tag, $"TouchGetMouseButton END (OK)"); Assert.Pass("TouchGetMouseButton"); }
public void TouchGetEllipseRadius() { tlog.Debug(tag, $"TouchGetEllipseRadius START"); Touch a1 = new Touch(); Vector2 b1 = a1.GetEllipseRadius(2); a1.Dispose(); tlog.Debug(tag, $"TouchGetEllipseRadius END (OK)"); Assert.Pass("TouchGetEllipseRadius"); }
public void TouchGetRadius() { tlog.Debug(tag, $"TouchGetRadius START"); Touch a1 = new Touch(); float f1 = a1.GetRadius(2); a1.Dispose(); tlog.Debug(tag, $"TouchGetRadius END (OK)"); Assert.Pass("TouchGetRadius"); }
public void TouchGetScreenPosition() { tlog.Debug(tag, $"TouchGetScreenPosition START"); Touch a1 = new Touch(); Vector2 b1 = a1.GetScreenPosition(2); a1.Dispose(); tlog.Debug(tag, $"TouchGetScreenPosition END (OK)"); Assert.Pass("TouchGetScreenPosition"); }
public void TouchGetHitView() { tlog.Debug(tag, $"TouchGetHitView START"); Touch a1 = new Touch(); View b1 = a1.GetHitView(2); a1.Dispose(); tlog.Debug(tag, $"TouchGetHitView END (OK)"); Assert.Pass("TouchGetHitView"); }
public void TouchGetState() { tlog.Debug(tag, $"TouchGetState START"); Touch a1 = new Touch(); PointStateType b1 = a1.GetState(1); a1.Dispose(); tlog.Debug(tag, $"TouchGetState END (OK)"); Assert.Pass("TouchGetDeviceId"); }
public void TouchGetDeviceId() { tlog.Debug(tag, $"TouchGetDeviceId START"); Touch a1 = new Touch(); a1.GetDeviceId(1); a1.Dispose(); tlog.Debug(tag, $"TouchGetDeviceId END (OK)"); Assert.Pass("TouchGetDeviceId"); }
public void TouchGetPointCount() { tlog.Debug(tag, $"TouchGetPointCount START"); Touch a1 = new Touch(); a1.GetPointCount(); a1.Dispose(); tlog.Debug(tag, $"TouchGetPointCount END (OK)"); Assert.Pass("TouchGetPointCount"); }
public void TouchGetTime() { tlog.Debug(tag, $"TouchGetTime START"); Touch a1 = new Touch(); a1.GetTime(); a1.Dispose(); tlog.Debug(tag, $"TouchGetTime END (OK)"); Assert.Pass("TouchGetTime"); }
public void TouchgetCPtr() { tlog.Debug(tag, $"TouchgetCPtr START"); Touch a1 = new Touch(); global::System.Runtime.InteropServices.HandleRef b1 = Touch.getCPtr(a1); a1.Dispose(); tlog.Debug(tag, $"TouchgetCPtr END (OK)"); Assert.Pass("TouchgetCPtr"); }
public void TouchConstructor() { tlog.Debug(tag, $"TouchConstructor START"); var testingTarget = new Touch(); Assert.IsNotNull(testingTarget, "Can't create success object Touch"); Assert.IsInstanceOf <Touch>(testingTarget, "Should be an instance of Touch type."); testingTarget.Dispose(); tlog.Debug(tag, $"TouchConstructor END (OK)"); Assert.Pass("TouchConstructor"); }
public void TouchConstructor() { tlog.Debug(tag, $"TouchConstructor START"); Touch a1 = new Touch(); Touch a2 = new Touch(a1); a2.Dispose(); a1.Dispose(); tlog.Debug(tag, $"TouchConstructor END (OK)"); Assert.Pass("TouchConstructor"); }
public void TouchGetAngle() { tlog.Debug(tag, $"TouchGetAngle START"); var testingTarget = new Touch(); Assert.IsNotNull(testingTarget, "Can't create success object Touch"); Assert.IsInstanceOf <Touch>(testingTarget, "Should be an instance of Touch type."); try { testingTarget.GetAngle(0); } catch (Exception e) { tlog.Debug(tag, e.Message.ToString()); testingTarget.Dispose(); tlog.Debug(tag, $"TouchGetAngle END (OK)"); Assert.Pass("Caught Exception : Passed!"); } }
public void TouchgetCPtr() { tlog.Debug(tag, $"TouchgetCPtr START"); var testingTarget = new Touch(); Assert.IsNotNull(testingTarget, "Can't create success object Touch"); Assert.IsInstanceOf <Touch>(testingTarget, "Should be an instance of Touch type."); try { Touch.getCPtr(testingTarget); } catch (Exception e) { tlog.Debug(tag, e.Message.ToString()); Assert.Fail("Caught Exception : Failed!"); } testingTarget.Dispose(); tlog.Debug(tag, $"TouchgetCPtr END (OK)"); }