Example #1
0
        public void XmasTestData_Encryption_Weakness_Based_On_Bad_Number_Should_Throw()
        {
            var    xmasDataValidator = new XmasDataValidator(_xmasData, 5);
            Action action            = () => xmasDataValidator.FindWeakness(1);

            action.Should().Throw <ArgumentOutOfRangeException>().WithMessage("*Encryption weakness not found based on number 1.*");
        }
Example #2
0
        public void XmasTestData_Encryption_Weakness_Should_Be_62()
        {
            var xmasDataValidator = new XmasDataValidator(_xmasData, 5);

            if (xmasDataValidator.Validate())
            {
                throw new XunitException("Xmas test data should not validate successfully.");
            }

            var(min, max) = xmasDataValidator.FindWeakness(xmasDataValidator.InvalidNumber);
            min.Should().Be(15);
            max.Should().Be(47);
            (min + max).Should().Be(62);
        }