зеркало из https://github.com/DeGsoft/maui-linux.git
64 строки
1.5 KiB
C#
64 строки
1.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
#if UITEST
|
|
using Xamarin.UITest;
|
|
using NUnit.Framework;
|
|
using Xamarin.Forms.Core.UITests;
|
|
#endif
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Github, 3087, "[Android] Non appcompat SwitchRenderer regression between 3.0 and 3.1",
|
|
PlatformAffected.iOS)]
|
|
#if UITEST
|
|
[NUnit.Framework.Category(UITestCategories.Switch)]
|
|
#endif
|
|
public class Issue3087 : TestContentPage
|
|
{
|
|
LegacyComponents.NonAppCompatSwitch legacySwitch = null;
|
|
Label status = new Label();
|
|
protected override void Init()
|
|
{
|
|
Content =
|
|
new StackLayout()
|
|
{
|
|
Children =
|
|
{
|
|
new Label(){ Text = "If nothing crashes this passes" },
|
|
status
|
|
}
|
|
};
|
|
}
|
|
|
|
protected async override void OnAppearing()
|
|
{
|
|
base.OnAppearing();
|
|
legacySwitch = new LegacyComponents.NonAppCompatSwitch() { IsToggled = true };
|
|
(Content as StackLayout).Children.Add(legacySwitch);
|
|
await Task.Delay(10);
|
|
legacySwitch.IsToggled = !legacySwitch.IsToggled;
|
|
await Task.Delay(10);
|
|
legacySwitch.IsToggled = !legacySwitch.IsToggled;
|
|
await Task.Delay(10);
|
|
legacySwitch.IsToggled = !legacySwitch.IsToggled;
|
|
status.Text = "Success";
|
|
}
|
|
|
|
#if UITEST && __ANDROID__
|
|
[Test]
|
|
public void NonAppCompatBasicSwitchTest()
|
|
{
|
|
RunningApp.WaitForElement("Success");
|
|
}
|
|
#endif
|
|
}
|
|
}
|