From 8dffdfc61d5517f525a0a47a9061f40a3a4d2943 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Wed, 30 Nov 2022 16:42:12 +0800 Subject: [PATCH] Delete ProgramTest.cs --- Flow.Launcher.Test/Plugins/ProgramTest.cs | 30 ----------------------- 1 file changed, 30 deletions(-) delete mode 100644 Flow.Launcher.Test/Plugins/ProgramTest.cs diff --git a/Flow.Launcher.Test/Plugins/ProgramTest.cs b/Flow.Launcher.Test/Plugins/ProgramTest.cs deleted file mode 100644 index 10818ec49..000000000 --- a/Flow.Launcher.Test/Plugins/ProgramTest.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Flow.Launcher.Plugin.Program.Programs; -using NUnit.Framework; -using System; -using Windows.ApplicationModel; - -namespace Flow.Launcher.Test.Plugins -{ - [TestFixture] - public class ProgramTest - { - //[TestCase("Microsoft.WindowsCamera", "ms-resource:LensSDK/Resources/AppTitle", "ms-resource://Microsoft.WindowsCamera/LensSDK/Resources/AppTitle")] - //[TestCase("microsoft.windowscommunicationsapps", "ms-resource://microsoft.windowscommunicationsapps/hxoutlookintl/AppManifest_MailDesktop_DisplayName", - // "ms-resource://microsoft.windowscommunicationsapps/hxoutlookintl/AppManifest_MailDesktop_DisplayName")] - //[TestCase("windows.immersivecontrolpanel", "ms-resource:DisplayName", "ms-resource://windows.immersivecontrolpanel/Resources/DisplayName")] - //[TestCase("Microsoft.MSPaint", "ms-resource:AppName", "ms-resource://Microsoft.MSPaint/Resources/AppName")] - //public void WhenGivenPriReferenceValueShouldReturnCorrectFormat(string packageName, string rawPriReferenceValue, string expectedFormat) - //{ - // // Arrange - // var app = new UWP.Application(); - - // // Act - // var result = UWP.Application.FormattedPriReferenceValue(packageName, rawPriReferenceValue); - - // // Assert - // Assert.IsTrue(result == expectedFormat, - // $"Expected Pri reference format: {expectedFormat}{Environment.NewLine} " + - // $"Actual: {result}{Environment.NewLine}"); - //} - } -}