public void TestIsFactor() { Assert.IsTrue(SuperMath.IsFactor(25, 5)); Assert.IsFalse(SuperMath.IsFactor(25, 3)); Assert.IsTrue(SuperMath.IsFactor(9, 3)); Assert.IsFalse(SuperMath.IsFactor(7, 3)); Assert.IsTrue(SuperMath.IsFactor(8, 2)); Assert.IsTrue(SuperMath.IsFactor(10, 2)); }