Example #1
0
        public void TestMethod7()
        {
            //Arrange
            string str      = "42";
            string expected = "42 42";
            //Act
            string actual = Challenge98.HighLow(str);;

            //Assert
            Assert.AreEqual(expected, actual);
        }
Example #2
0
        public void TestMethod1()
        {
            //Arrange
            string str      = "4 5 29 54 4 0 -214 542 -64 1 -3 6 -6";
            string expected = "542 -214";
            //Act
            string actual = Challenge98.HighLow(str);;

            //Assert
            Assert.AreEqual(expected, actual);
        }