Esempio n. 1
0
        public void TestExtensionIntEsPrimeroFalse()
        {
            const int NOPRIMO = 114;

            Assert.IsFalse(NOPRIMO.EsPrimero());
        }
Esempio n. 2
0
        public void TestExtensionIntEsPrimeroTrue()
        {
            const int NOPRIMO = 223;

            Assert.IsTrue(NOPRIMO.EsPrimero());
        }