public void StrToInt_ShouldReturnTheExpectedResult() { Assert.Equal(StringExamples.StrToInt("123"), 123); }
public void StrToInt_ShouldReturnTheExpectedResultWhenNegative() { Assert.Equal(StringExamples.StrToInt("-123"), -123); }