(self)
| 1193 | self.func = statistics._sum |
| 1194 | |
| 1195 | def test_empty_data(self): |
| 1196 | # Override test for empty data. |
| 1197 | for data in ([], (), iter([])): |
| 1198 | self.assertEqual(self.func(data), (int, Fraction(0), 0)) |
| 1199 | |
| 1200 | def test_ints(self): |
| 1201 | self.assertEqual(self.func([1, 5, 3, -4, -8, 20, 42, 1]), |
nothing calls this directly
no test coverage detected