diff --git a/Flow.Launcher.Test/Plugins/ExplorerTest.cs b/Flow.Launcher.Test/Plugins/ExplorerTest.cs index caa884b51..80cb74729 100644 --- a/Flow.Launcher.Test/Plugins/ExplorerTest.cs +++ b/Flow.Launcher.Test/Plugins/ExplorerTest.cs @@ -186,18 +186,18 @@ namespace Flow.Launcher.Test.Plugins $"Actual result was: {result}{Environment.NewLine}"); } - //[TestCase(@"c:\\", false)] - //[TestCase(@"i:\", true)] - //[TestCase(@"\c:\", false)] - //[TestCase(@"cc:\", false)] - //[TestCase(@"\\\SomeNetworkLocation\", false)] - //[TestCase(@"\\SomeNetworkLocation\", true)] - //[TestCase("RandomFile", false)] - //[TestCase(@"c:\>*", true)] - //[TestCase(@"c:\>", true)] - //[TestCase(@"c:\SomeLocation\SomeOtherLocation\>", true)] - //[TestCase(@"c:\SomeLocation\SomeOtherLocation", true)] - //[TestCase(@"c:\SomeLocation\SomeOtherLocation\SomeFile.exe", true)] + [TestCase(@"c:\\", false)] + [TestCase(@"i:\", true)] + [TestCase(@"\c:\", false)] + [TestCase(@"cc:\", false)] + [TestCase(@"\\\SomeNetworkLocation\", false)] + [TestCase(@"\\SomeNetworkLocation\", true)] + [TestCase("RandomFile", false)] + [TestCase(@"c:\>*", true)] + [TestCase(@"c:\>", true)] + [TestCase(@"c:\SomeLocation\SomeOtherLocation\>", true)] + [TestCase(@"c:\SomeLocation\SomeOtherLocation", true)] + [TestCase(@"c:\SomeLocation\SomeOtherLocation\SomeFile.exe", true)] [TestCase(@"\\SomeNetworkLocation\SomeFile.exe", true)] public void WhenGivenQuerySearchString_ThenShouldIndicateIfIsLocationPathString(string querySearchString, bool expectedResult)