Ejemplo n.º 1
0
        public void Test1()
        {
            var text = IntToTextConverter.Convert(1);

            Assert.Equal("en", text);
        }
Ejemplo n.º 2
0
        public void Test9(int input, string expected)
        {
            var text = IntToTextConverter.Convert(input);

            Assert.Equal(expected, text);
        }