mirror of
https://github.com/donnemartin/interactive-coding-challenges.git
synced 2024-03-22 13:11:13 +08:00
24 lines
599 B
Python
24 lines
599 B
Python
from nose.tools import assert_equal, assert_raises
|
|
|
|
|
|
class TestBits(object):
|
|
|
|
def test_pairwise_swap(self):
|
|
bits = Bits()
|
|
assert_equal(bits.pairwise_swap(0), 0)
|
|
assert_equal(bits.pairwise_swap(1), 1)
|
|
num = int('0000100111110110', base=2)
|
|
expected = int('0000011011111001', base=2)
|
|
assert_equal(bits.pairwise_swap(num), expected)
|
|
assert_raises(TypeError, bits.pairwise_swap, None)
|
|
|
|
print('Success: test_pairwise_swap')
|
|
|
|
|
|
def main():
|
|
test = TestBits()
|
|
test.test_pairwise_swap()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |