public void LoadingDirectory(
     DirectoryPath workingDir,
     WorkingDirectorySubPaths sut)
 {
     sut.WorkingDir.WorkingDirectory.Returns(workingDir);
     sut.LoadingFolder.Should().Be(
         new DirectoryPath(
             Path.Combine(workingDir, "Loading")));
 }
 public void ProfileWorkingDirectory(
     DirectoryPath workingDir,
     string id,
     WorkingDirectorySubPaths sut)
 {
     sut.WorkingDir.WorkingDirectory.Returns(workingDir);
     sut.ProfileWorkingDirectory(id).Should().Be(
         new DirectoryPath(
             Path.Combine(workingDir, id, "Workspace")));
 }