mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
update test name
This commit is contained in:
parent
fefb137870
commit
b77bfea887
1 changed files with 3 additions and 3 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
using Flow.Launcher.Plugin.SharedCommands;
|
using Flow.Launcher.Plugin.SharedCommands;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
|
|
||||||
namespace Flow.Launcher.Test
|
namespace Flow.Launcher.Test
|
||||||
|
|
@ -37,7 +37,7 @@ namespace Flow.Launcher.Test
|
||||||
[TestCase(@"c:\foo", @"c:\foo", false)]
|
[TestCase(@"c:\foo", @"c:\foo", false)]
|
||||||
[TestCase(@"c:\foo\", @"c:\foo", false)]
|
[TestCase(@"c:\foo\", @"c:\foo", false)]
|
||||||
[TestCase(@"c:\foo", @"c:\foo\", false)]
|
[TestCase(@"c:\foo", @"c:\foo\", false)]
|
||||||
public void TestPathContains(string parentPath, string path, bool expectedResult)
|
public void GivenTwoPaths_WhenCheckPathContains_ThenShouldBeExpectedResult(string parentPath, string path, bool expectedResult)
|
||||||
{
|
{
|
||||||
Assert.AreEqual(expectedResult, FilesFolders.PathContains(parentPath, path));
|
Assert.AreEqual(expectedResult, FilesFolders.PathContains(parentPath, path));
|
||||||
}
|
}
|
||||||
|
|
@ -45,7 +45,7 @@ namespace Flow.Launcher.Test
|
||||||
[TestCase(@"c:\foo", @"c:\foo", true)]
|
[TestCase(@"c:\foo", @"c:\foo", true)]
|
||||||
[TestCase(@"c:\foo\", @"c:\foo", true)]
|
[TestCase(@"c:\foo\", @"c:\foo", true)]
|
||||||
[TestCase(@"c:\foo", @"c:\foo\", true)]
|
[TestCase(@"c:\foo", @"c:\foo\", true)]
|
||||||
public void TestPathContainsWhenEqual(string parentPath, string path, bool expectedResult)
|
public void GivenTwoPathsAreTheSame_WhenCheckPathContains_ThenShouldBeTrue(string parentPath, string path, bool expectedResult)
|
||||||
{
|
{
|
||||||
Assert.AreEqual(expectedResult, FilesFolders.PathContains(parentPath, path, true));
|
Assert.AreEqual(expectedResult, FilesFolders.PathContains(parentPath, path, true));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue