зеркало из https://github.com/DeGsoft/maui-linux.git
37 строки
785 B
C#
37 строки
785 B
C#
using System;
|
|
|
|
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
#if UITEST
|
|
using Xamarin.UITest;
|
|
using NUnit.Framework;
|
|
#endif
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve (AllMembers = true)]
|
|
[Issue (IssueTracker.Bugzilla, 29128, "Slider background lays out wrong Android")]
|
|
public class Bugzilla29128 : TestContentPage
|
|
{
|
|
protected override void Init ()
|
|
{
|
|
Content = new Slider {
|
|
AutomationId = "SliderId",
|
|
BackgroundColor = Color.Blue,
|
|
Maximum = 255,
|
|
Minimum = 0,
|
|
};
|
|
}
|
|
|
|
#if UITEST
|
|
[Test]
|
|
public void Bugzilla29128Test ()
|
|
{
|
|
RunningApp.WaitForElement (q => q.Marked ("SliderId"));
|
|
RunningApp.Screenshot("Slider and button should be centered");
|
|
Assert.Inconclusive ("For visual review only");
|
|
}
|
|
#endif
|
|
}
|
|
}
|