Beispiel #1
0
        public void Test_RevSen()
        {
            stringTempClass s = new stringTempClass("a b c d");

            string[] t = "a b c d".Split();
            string[] r = s.RevSen(t);
            Assert.AreEqual(t[0], r[r.Length - 1]);
            Assert.AreEqual(t[1], r[r.Length - 2]);
        }