public void JoinWithComma_JoinsStringsWithComma() { var strings = new[] {"one", "two", "three"}; strings.JoinWithComma().Should().Be("one,two,three"); }
public void JoinWithCommaAndaddedSpace_JoinsStringsWithComma() { var strings = new[] { "one", "two", "three" }; strings.JoinWithComma(StringJoinOptions.AddSpaceSuffix).Should().Be("one, two, three"); }