public void JoinWithSemiColon_JoinsStringsWithSemiColon()
        {
            var strings = new[] { "one", "two", "three" };

            strings.JoinWithSemiColon().Should().Be("one;two;three");
        }
        public void JoinWithSemiColonAndAddedSpace_JoinsStringsWithSemiColon()
        {
            var strings = new[] { "one", "two", "three" };

            strings.JoinWithSemiColon(StringJoinOptions.AddSpaceSuffix).Should().Be("one; two; three");
        }