public void WithFullPathExtraction_sets_UseFullPaths_to_true_on_the_command() { var command = new ExtractCommand(); var sut = new ExtractCommandBuilder(ref command); sut.WithFullPathExtraction(); command.UseFullPaths.ShouldBeTrue(); }
public void WithFullPathExtraction_returns_the_builder() { var command = new ExtractCommand(); var sut = new ExtractCommandBuilder(ref command); var actual = sut.WithFullPathExtraction(); actual.ShouldBe(sut); }