public void KeyLocationExistsTest() { var target = new KeyFile(); Assert.IsTrue(target.KeyLocationExists("Readme.txt")); Assert.IsFalse(target.KeyLocationExists("DontReadme.txt")); }
public void KeyLocationExistsBlankTest() { var target = new KeyFile(); Assert.IsFalse(target.KeyLocationExists(" \t")); }
public void KeyLocationExistsEmptyTest() { var target = new KeyFile(); Assert.IsFalse(target.KeyLocationExists("")); }