Example #1
0
        public void ConcatArrayWithSpace()
        {
            Uppgifter up = new Uppgifter();

            string[] str = new string[] { "String1", "String2", "String3" };


            var act = up.ConcatArrayWithSpace(str);

            Assert.IsInstanceOfType(act, typeof(string));
            TestContext.WriteLine(act);
        }