コード例 #1
0
        public void Create()
        {
            ICodeFactory fac = new CodeFactory();

            fac.AddProvider(new GeneralCodeProvider(new GeneralCodeOptions()));

            var code = fac.Create();

            Assert.True(code.Value.Length == 5);
            Assert.True(code.Validate(code.DisplayText));
        }