Skip to content

Commit 343b3a0

Browse files
Added Mac Snapshots
1 parent 3917a9d commit 343b3a0

File tree

8 files changed

+8
-2
lines changed

8 files changed

+8
-2
lines changed

src/Controls/tests/TestCases.HostApp/Issues/Issue1975.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,10 @@ ContentPage CreateRootPage()
3232
lv.SetBinding(ListView.ItemsSourceProperty, new Binding("Items"));
3333
lv.IsGroupingEnabled = true;
3434
lv.GroupDisplayBinding = new Binding("Description");
35+
#if !WINDOWS
36+
//The ListView cannot be accessed via automation on Windows when the GroupShortNameBinding property is used.
3537
lv.GroupShortNameBinding = new Binding("ShortName");
36-
38+
#endif
3739
lv.ItemTemplate = new DataTemplate(() =>
3840
{
3941
var textCell = new TextCell();
50 KB
Loading
56.2 KB
Loading
43.4 KB
Loading
44.1 KB
Loading

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue18111.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ public Issue18111(TestDevice device) : base(device)
1414

1515
[Test]
1616
[Category(UITestCategories.Slider)]
17+
[FailsOnAndroidWhenRunningOnXamarinUITest("Regression test validating the design differences between iOS and Mac specifically")]
18+
[FailsOnWindowsWhenRunningOnXamarinUITest("Regression test validating the design differences between iOS and Mac specifically")]
1719
public void SettingMaximumTrackColorOnSliderWorks()
1820
{
1921
App.WaitForElement("WaitForSliderControl");

src/Controls/tests/TestCases.Shared.Tests/Tests/Issues/Issue1900.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
using NUnit.Framework;
1+
#if IOS
2+
using NUnit.Framework;
23
using UITest.Appium;
34
using UITest.Core;
45

@@ -21,3 +22,4 @@ public void Issue1900Test()
2122
}
2223
}
2324
}
25+
#endif
6.86 KB
Loading

0 commit comments

Comments
 (0)