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

            string str = "test test test";

            var act = up.UppercaseFirstEach(str);

            Assert.IsTrue(act.IsUpper());
            TestContext.WriteLine(act);
        }
Example #2
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);
        }
Example #3
0
        public void Capitalize()
        {
            Uppgifter up = new Uppgifter();

            string str = "test1 test2 test3.,:";


            var act = up.Capitalize(str);

            Regex number = new Regex(@"[0-9]+$");

            Assert.IsTrue(act.IsUpper() && act.Contains("_") && !act.Contains(" ") && !number.IsMatch(act));
            TestContext.WriteLine(act);
        }
Example #4
0
        public void Avrage()
        {
            Uppgifter up = new Uppgifter();

            int tal1 = 8;

            int tal2 = 6;

            int avg = 7;

            var act = up.Average(tal1, tal2);

            Assert.AreEqual(act, avg, "result is not equal to expected value" + avg);
            TestContext.WriteLine(act.ToString());
        }