예제 #1
0
        public void GeneratorReturnsStringForIndividual()
        {
            CvvGeneratorService testExample = new CvvGeneratorService();
            var result = testExample.Generate();

            Assert.IsTrue(result is string);
        }
예제 #2
0
        public void CheckReturningLength()
        {
            CvvGeneratorService testExample = new CvvGeneratorService();
            string result = testExample.Generate();

            Assert.IsTrue(result.Length == 3);
        }