// 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.Linq; using Mono.Collections.Generic; using Moq; using NUnit.Framework; using Wox.Infrastructure; using Wox.Plugin; namespace Microsoft.PowerToys.Run.Plugin.System.UnitTests { public class QueryTests { [SetUp] public void Setup() { StringMatcher.Instance = new StringMatcher(); } [TestCase("shutdown", "Shutdown computer")] [TestCase("restart", "Restart computer")] [TestCase("sign out", "Sign out of computer")] [TestCase("lock", "Lock computer")] [TestCase("sleep", "Put computer to sleep")] [TestCase("hibernate", "Hibernate computer")] [TestCase("empty recycle", "Empty Recycle Bin")] public void QueryResults(string typedString, string expectedResult) { // Setup Mock
main = new Mock
(); string[] terms = { typedString }; Query expectedQuery = new Query(typedString, typedString, new ReadOnlyCollection(terms), string.Empty); // Act var result = main.Object.Query(expectedQuery).FirstOrDefault().SubTitle; // Assert Assert.AreEqual(expectedResult, result); } } }