public void Test1() { var text = IntToTextConverter.Convert(1); Assert.Equal("en", text); }
public void Test9(int input, string expected) { var text = IntToTextConverter.Convert(input); Assert.Equal(expected, text); }