Пример #1
0
 public void StrToInt_ShouldReturnTheExpectedResult()
 {
     Assert.Equal(StringExamples.StrToInt("123"), 123);
 }
Пример #2
0
 public void StrToInt_ShouldReturnTheExpectedResultWhenNegative()
 {
     Assert.Equal(StringExamples.StrToInt("-123"), -123);
 }