Beispiel #1
0
        public void BackAroundTest(string str, string expected)
        {
            Conditionals test   = new Conditionals();
            string       actual = test.BackAround(str);

            Assert.AreEqual(expected, actual);
        }
        public void BackAround(string a, string expected)
        {
            // arrange
            Conditionals obj = new Conditionals();

            // act
            string actual = obj.BackAround(a);

            // assert
            Assert.AreEqual(expected, actual);
        }
        public void BackAroundTest(string s, string expected)
        {
            var actual = _conditionals.BackAround(s);

            Assert.AreEqual(expected, actual);
        }
        public void BackAroundTest(string s, string expected)
        {
            string actual = obj.BackAround(s);

            Assert.AreEqual(expected, actual);
        }