public void GeneratorReturnsStringForIndividual()
        {
            CvvGeneratorService testExample = new CvvGeneratorService();
            var result = testExample.Generate();

            Assert.IsTrue(result is string);
        }
        public void CheckReturningLength()
        {
            CvvGeneratorService testExample = new CvvGeneratorService();
            string result = testExample.Generate();

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