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