зеркало из https://github.com/DeGsoft/maui-linux.git
31 строка
656 B
C#
31 строка
656 B
C#
using Xamarin.Forms.CustomAttributes;
|
|
using Xamarin.Forms.Internals;
|
|
|
|
#if UITEST
|
|
using NUnit.Framework;
|
|
#endif
|
|
|
|
namespace Xamarin.Forms.Controls.Issues
|
|
{
|
|
[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
|
|
}
|
|
} |