コード例 #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);
        }