예제 #1
0
 public string ToBeTestedMethod(int id)
 {
     if (id < 1)
     {
         throw new ArgumentException("Invalid Id");
     }
     return(_injected.ReturnsName(id));
 }