Ejemplo n.º 1
0
        public void GenerateTestReturnsString()
        {
            KppGeneratorService testExample = new KppGeneratorService();
            var result = testExample.Generate();

            Assert.IsTrue(result is string);
        }
Ejemplo n.º 2
0
        public void GenerateTestReturnsEnoughSymbols()
        {
            KppGeneratorService testExample = new KppGeneratorService();
            var result = testExample.Generate();

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