Beispiel #1
0
 public void return_InsertWord(string a, string b, string c)
 {
     // arrange
     StringWarmUps x = new StringWarmUps();
     // act
     string word_result = x.InsertWord(a, b);
     // assert
     Assert.AreEqual(c, word_result);
 }