Exemplo n.º 1
0
 public void DoNotYak(string str, string expected)
 {
     Loops obj = new Loops();
     string actual = obj.DoNotYak(str);
     Assert.AreEqual(expected, actual);
 }
Exemplo n.º 2
0
 public void DoNotYak(string str, string expected)
 {
     //Arrange
     Loops test = new Loops();
     //Act
     string actual = test.DoNotYak(str);
     //Assert
     Assert.AreEqual(expected, actual);
 }
Exemplo n.º 3
0
        public void DoNotYak(string a, string expected)
        {
            // arrange
            Loops obj = new Loops();

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

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