summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core.iOS.UITests/Remotes/StateViewContainerRemote.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core.iOS.UITests/Remotes/StateViewContainerRemote.cs')
-rw-r--r--Xamarin.Forms.Core.iOS.UITests/Remotes/StateViewContainerRemote.cs35
1 files changed, 0 insertions, 35 deletions
diff --git a/Xamarin.Forms.Core.iOS.UITests/Remotes/StateViewContainerRemote.cs b/Xamarin.Forms.Core.iOS.UITests/Remotes/StateViewContainerRemote.cs
deleted file mode 100644
index 2d7a1172..00000000
--- a/Xamarin.Forms.Core.iOS.UITests/Remotes/StateViewContainerRemote.cs
+++ /dev/null
@@ -1,35 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Diagnostics;
-using System.Linq;
-using System.Linq.Expressions;
-using System.Runtime.CompilerServices;
-using System.Text;
-using System.Threading;
-using System.Threading.Tasks;
-
-using NUnit.Framework;
-
-using Xamarin.UITest;
-using Xamarin.UITest.Queries;
-
-namespace Xamarin.Forms.Core.UITests
-{
- internal sealed class StateViewContainerRemote : BaseViewContainerRemote
- {
- public StateViewContainerRemote (IApp app, Enum formsType, string platformViewType)
- : base(app, formsType, platformViewType) { }
-
- public void TapStateButton ()
- {
- App.Screenshot ("Before state change");
- App.Tap (q => q.Raw (StateButtonQuery));
- App.Screenshot ("After state change");
- }
-
- public AppResult GetStateLabel ()
- {
- return App.Query (q => q.Raw (StateLabelQuery)).First ();
- }
- }
-}