Ejemplo n.º 1
0
        public void GeneratePasswordWithEightyCharactersTest()
        {
            string result2 = Pwgen.Generate(80);

            Assert.AreEqual(result2.Length, 80);
        }
Ejemplo n.º 2
0
        public void GeneratePasswordWithEightyCharactersTest()
        {
            string result2 = Pwgen.Generate(80);

            result2.Length.ShouldBe(80);
        }
Ejemplo n.º 3
0
        public void GeneratePasswordWithTenCharactersTest()
        {
            string result = Pwgen.Generate(10);

            Assert.AreEqual(result.Length, 10);
        }
Ejemplo n.º 4
0
        public void GeneratePasswordWithTenCharactersTest()
        {
            string result = Pwgen.Generate(10);

            result.Length.ShouldBe(10);
        }