Exemple #1
0
        public void StringX(string str, string expected)
        {
            Loops obj = new Loops();

            string actual = obj.StringX(str);

            Assert.AreEqual(expected, actual);
        }
Exemple #2
0
 public void StringX(string str, string expected)
 {
     //Arrange
     Loops test = new Loops();
     //Act
     string actual = test.StringX(str);
     //Assert
     Assert.AreEqual(expected, actual);
 }
Exemple #3
0
        public void StringX(string a, string expected)
        {
            // arrange
            Loops obj = new Loops();

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

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