Exemplo n.º 1
0
 public void StrToInt_ShouldReturnTheExpectedResult()
 {
     Assert.Equal(StringExamples.StrToInt("123"), 123);
 }
Exemplo n.º 2
0
 public void StrToInt_ShouldReturnTheExpectedResultWhenNegative()
 {
     Assert.Equal(StringExamples.StrToInt("-123"), -123);
 }