def test_round_to_half_int(self): r""" Checking utility: round_to_half_int """ self.assertEqual(round_to_half_int(1.1), 1.0) self.assertEqual(round_to_half_int(-0.9), -1.0)