summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core.Windows.UITests/App.cs
blob: 966ef2616f704689f0888cdd9bc47bc8beba328d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.UITest;

namespace Xamarin.Forms.Core.UITests
{
    internal static class RunningApp
	{
		public static IApp App;
	
		public static void Restart () 
		{
			App = null;
			//App = ConfigureApp
			//	.iOS
			//	.Debug ()
			//	.InstalledApp ("com.xamarin.quickui.controlgallery")
			//	.StartApp ();
		}
	}
}