/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/LightSwitch/Tests/LightSwitch.UITests/TestGeolocation.cs
32 строки
931 B
Jaylyn Barbee
[New Module] Light Switch (#41987)
06 окт 2025, 23:44
Не верифицирован
06 окт 2025, 23:44
0d52205
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Microsoft.PowerToys.UITest; using Microsoft.VisualStudio.TestTools.UnitTesting; namespace LightSwitch.UITests { [TestClass] public class TestGeolocation : UITestBase { public TestGeolocation() : base(PowerToysModule.PowerToysSettings, WindowSize.Large) { } [TestMethod("LightSwitch.Geolocation")] [TestCategory("Location")] public void TestGeolocationUpdate() { TestHelper.InitializeTest(this, "geolocation test"); TestHelper.PerformGeolocationTest(this); TestHelper.CleanupTest(this); } } }