def testIsPowerOfTwo(self, value): self.assertTrue(isPowerOfTwo(value))
def testIsNotPowerOfTwo(self, value): self.assertFalse(isPowerOfTwo(value))