maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Bugzilla60045.xaml.cs

63 строки
1.2 KiB
C#
Исходник Обычный вид История

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;
#if UITEST
using Xamarin.UITest;
using NUnit.Framework;
using Xamarin.Forms.Core.UITests;
#endif
namespace Xamarin.Forms.Controls.Issues
{
#if UITEST
[Category(UITestCategories.ListView)]
#endif
[Preserve(AllMembers = true)]
[Issue(IssueTracker.Bugzilla, 60045,
"ListView with RecycleElement strategy doesn't handle CanExecute of TextCell Command properly",
PlatformAffected.iOS)]
public partial class Bugzilla60045 : TestContentPage
{
public const string ClickThis = "Click This";
public const string Fail = "Fail";
public object Items { get; set; }
public Bugzilla60045()
{
#if APP
InitializeComponent();
#endif
}
protected override void Init()
{
Items = new[]
{
new {
Action = new Command(async () =>
{
await DisplayAlert(Fail, "Well, this is embarrassing.", "Ok");
},
() => false) }
};
}
#if UITEST
[Test]
public void CommandDoesNotFire()
{
RunningApp.WaitForElement(ClickThis);
RunningApp.Tap(ClickThis);
RunningApp.WaitForNoElement(Fail);
}
#endif
}
}