Beispiel #1
0
        public void ToStringTest_Net35(string expected, params string[] input)
        {
            //Replacing the delimiter here means that the delimiter in
            // the 'expected' string does not need to be updated
            // if SerializableList.delimiter is changed.
            expected = expected.Replace(",", SerializableList.delimiter);

            string actual = SerializableList.ToString_Net35(new SerializableList <string>(input));

            Assert.AreEqual(expected, actual);
        }