Flow.Launcher/Flow.Launcher.Test/Plugins/ExplorerTest.cs
2020-05-11 23:15:15 +10:00

16 lines
665 B
C#

using NUnit.Framework;
namespace Flow.Launcher.Test.Plugins
{
[TestFixture]
public class ExplorerTest
{
public void GivenWindowsIndexSearch_WhenProvidedFolderPath_ThenQueryWhereRestrictionsShouldUseDirectoryString(string expectedString){}
public void GivenWindowsIndexSearch_WhenSearchAllFoldersAndFiles_ThenQueryWhereRestrictionsShouldUseScopeString() { }
public void GivenWindowsIndexSearch_WhenReturnedNilAndIsNotIndexed_ThenSearchMethodShouldContinueDirectoryInfoClassSearch() { }
public void GivenWindowsIndexSearch_WhenSearchPatternHotKeyIsSearchAll_ThenQueryWhereRestrictionsShouldUseScopeString() { }
}
}