Exemple #1
0
    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();
    }
Exemple #2
0
    public void WithFullPathExtraction_returns_the_builder()
    {
        var command = new ExtractCommand();
        var sut     = new ExtractCommandBuilder(ref command);

        var actual = sut.WithFullPathExtraction();

        actual.ShouldBe(sut);
    }