示例#1
0
文件: UnitTest1.cs 项目: osandbu/tdd
        public void Test1()
        {
            var text = IntToTextConverter.Convert(1);

            Assert.Equal("en", text);
        }
示例#2
0
文件: UnitTest1.cs 项目: osandbu/tdd
        public void Test9(int input, string expected)
        {
            var text = IntToTextConverter.Convert(input);

            Assert.Equal(expected, text);
        }