コード例 #1
0
 public void ErrorReturnsDefault(
     ProjectPathConstructor sut)
 {
     sut.Construct("C:/SolutionDir/SolutionPath.sln", null !)
     .Should().Be(new FilePath());
 }
コード例 #2
0
 public void CombinesSolutionDirWithSubPath(
     ProjectPathConstructor sut)
 {
     sut.Construct("C:/SolutionDir/SolutionPath.sln", "SubPath")
     .Should().Be(new FilePath("C:/SolutionDir/SubPath"));
 }