def test_bcd_255(self): self.assertEqual(bcd(255), [2, 5, 5])
def test_bcd_1(self): self.assertEqual(bcd(1), [0, 0, 1])