зеркало из https://github.com/DeGsoft/maui-linux.git
53 строки
1.0 KiB
C#
53 строки
1.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Text;
|
|
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
|
|
{
|
|
[Preserve(AllMembers = true)]
|
|
[Issue(IssueTracker.Github, 4782, "[Android] Null drawable crashes Image Button",
|
|
PlatformAffected.iOS)]
|
|
#if UITEST
|
|
[NUnit.Framework.Category(UITestCategories.ImageButton)]
|
|
#endif
|
|
public class Issue4782 : TestContentPage
|
|
{
|
|
const string _success = "Success";
|
|
public class Issue4782ImageButton : ImageButton { }
|
|
|
|
protected override void Init()
|
|
{
|
|
Content = new StackLayout()
|
|
{
|
|
Children =
|
|
{
|
|
new Label()
|
|
{
|
|
Text = "If app didn't crash then test passed",
|
|
AutomationId = _success
|
|
},
|
|
new Issue4782ImageButton()
|
|
}
|
|
};
|
|
}
|
|
|
|
#if UITEST && __ANDROID__
|
|
[Test]
|
|
public void ImageButtonNullDrawable()
|
|
{
|
|
RunningApp.WaitForElement(_success);
|
|
}
|
|
#endif
|
|
}
|
|
}
|