Esempio n. 1
0
    public void WithoutFullPathExtraction_sets_UseFullPaths_to_false_on_the_command()
    {
        var command = new ExtractCommand();
        var sut     = new ExtractCommandBuilder(ref command);

        sut.WithoutFullPathExtraction();

        command.UseFullPaths.ShouldBeFalse();
    }
Esempio n. 2
0
    public void WithoutFullPathExtraction_returns_the_builder()
    {
        var command = new ExtractCommand();
        var sut     = new ExtractCommandBuilder(ref command);

        var actual = sut.WithoutFullPathExtraction();

        actual.ShouldBe(sut);
    }