public void BackAround(string str, string expected)
        {
            Conditionals obj = new Conditionals();

            string actual = obj.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);
        }
Beispiel #3
0
 public void BackAroundTest(string str, string expected)
 {
     Conditionals test = new Conditionals();
     string actual = test.BackAround(str);
     Assert.AreEqual(expected, actual);
 }