public void LoadOnStartup_WithoutBeingSet_ReturnsTrue()
 {
     var test = new CustomPathStartupFileLocator(_TestPath);
     Assert.True(test.LoadOnStartup);
 }
 public void Path_GivenPath_ReturnsPath()
 {
     var test = new CustomPathStartupFileLocator(_TestPath);
     Assert.Equal(_TestPath, test.Path);
 }
 public void LoadOnStartup_AfterSetToFalse_ReturnsFalse()
 {
     var test = new CustomPathStartupFileLocator(_TestPath) {LoadOnStartup = false};
     Assert.False(test.LoadOnStartup);
 }