(self)
| 350 | self.gen.choices('AB', [0.0, 0.0]) |
| 351 | |
| 352 | def test_choices_negative_total(self): |
| 353 | with self.assertRaises(ValueError): |
| 354 | self.gen.choices('ABC', [3, -5, 1]) |
| 355 | |
| 356 | def test_choices_infinite_total(self): |
| 357 | with self.assertRaises(ValueError): |
nothing calls this directly
no test coverage detected