TestUserSelectedLocation.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System; 6 using System.Collections.Generic; 7 using System.Linq; 8 using System.Text; 9 using System.Threading.Tasks; 10 using Microsoft.PowerToys.UITest; 11 using Microsoft.VisualStudio.TestTools.UnitTesting; 12 13 namespace LightSwitch.UITests 14 { 15 [TestClass] 16 public class TestUserSelectedLocation : UITestBase 17 { 18 public TestUserSelectedLocation() 19 : base(PowerToysModule.PowerToysSettings, WindowSize.Large) 20 { 21 } 22 23 [TestMethod("LightSwitch.UserSelectedLocation")] 24 [TestCategory("Location")] 25 public void TestUserSelectedLocationUpdate() 26 { 27 TestHelper.InitializeTest(this, "user selected location test"); 28 TestHelper.PerformUserSelectedLocationTest(this); 29 TestHelper.CleanupTest(this); 30 } 31 } 32 }