public void ReturnFalseGivenValueof1Int()
        {
            const int INPUT  = 1;
            var       result = primary.IsPrime(INPUT);

            Assert.False(result, $"{INPUT} should not be prime.");
        }