Exemple #1
0
        public void RotationsOf197_AreAllPrime()
        {
            var primeService = new PrimeService();
            var result       = new BigInteger(197)
                               .ToDigitRotations();

            var result2 = result
                          .AllPrime(primeService);

            Assert.IsTrue(result2);
        }