Exemplo n.º 1
0
 public void ReturnEmptyStringWhenNoValues()
 {
     Given.ValuesIsEmpty();
     And.ExpectEmptyResult();
     Then.ValuesJoinedToString()
     .Should().Be(ExpectedResult(), "Because values is empty");
 }
Exemplo n.º 2
0
 public void ReturnEmptyString()
 {
     Given.ValuesContainOnlyNullElement();
     And.IgnoreNullValues();
     And.ExpectEmptyResult();
     Then.ValuesJoinedToString()
     .Should().BeEmpty();
 }