TestGeolocation.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 TestGeolocation : UITestBase 17 { 18 public TestGeolocation() 19 : base(PowerToysModule.PowerToysSettings, WindowSize.Large) 20 { 21 } 22 23 [TestMethod("LightSwitch.Geolocation")] 24 [TestCategory("Location")] 25 public void TestGeolocationUpdate() 26 { 27 TestHelper.InitializeTest(this, "geolocation test"); 28 TestHelper.PerformGeolocationTest(this); 29 TestHelper.CleanupTest(this); 30 } 31 } 32 }