/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/LightSwitch/Tests/LightSwitch.UITests/TestShortcut.cs
32 строки
972 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 TestShortcut : UITestBase { public TestShortcut() : base(PowerToysModule.PowerToysSettings, WindowSize.Large) { } [TestMethod("LightSwitch.TestShortcut")] [TestCategory("Shortcut")] public void TestLightSwitchShortcut() { var activationKeys = TestHelper.InitializeTest(this, "light switch shortcut test"); TestHelper.PerformShortcutTest(this, activationKeys); TestHelper.CleanupTest(this); } } }