public void IsWebApp_Should_False() { var appFolderPath = new MyAppPath(); appFolderPath.LogProperties(); appFolderPath.IsWebApp.ShouldFalse(); }
public void CreateSubFolder_SubPath_Null_Should_Throw() { var appFolderPath = new MyAppPath(); appFolderPath.LogProperties(); appFolderPath.CombinePath("A", null); }
public void Bin_Should_NotNull() { var appFolderPath = new MyAppPath(); appFolderPath.LogProperties(); appFolderPath.Bin.ShouldNotNull(); }
public void AppData_Should_NotNull() { var appFolderPath = new MyAppPath(); appFolderPath.LogProperties(); appFolderPath.AppData.ShouldNotNull(); }
public void BaseDirectory_Should_NotNull() { var appFolderPath = new MyAppPath(); appFolderPath.LogProperties(); appFolderPath.BaseDirectory.ShouldNotNull(); }
public void CreateSubFolder_Should_OK() { var appFolderPath = new MyAppPath(); appFolderPath.LogProperties(); appFolderPath.CombinePath("A", "B").ShouldEqual(@"A\B"); appFolderPath.CombinePath(@"A\", "B").ShouldEqual(@"A\B"); }