maui-linux/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issu.../Issue2983.cs

36 строки
750 B
C#

using Xamarin.Forms.CustomAttributes;
using Xamarin.Forms.Internals;
#if UITEST
using NUnit.Framework;
#endif
namespace Xamarin.Forms.Controls.Issues
{
#if UITEST
[NUnit.Framework.Category(Core.UITests.UITestCategories.Github5000)]
#endif
[Preserve(AllMembers = true)]
[Issue(IssueTracker.Github, 2983, "ListView.Footer can cause NullReferenceException", PlatformAffected.iOS)]
public class Issue2983 : TestContentPage
{
protected override void Init()
{
Content = new ListView
{
Footer = new StackLayout
{
Children = { new Label { Text = "Footer", AutomationId = "footer" } }
}
};
}
#if UITEST
[Test]
public void TestDoesNotCrash()
{
RunningApp.WaitForElement(c => c.Marked("footer"));
}
#endif
}
}