(self)
| 2970 | ) |
| 2971 | |
| 2972 | def test_datetime(self): |
| 2973 | self.run_test_cases( |
| 2974 | "Date", |
| 2975 | RangeOpts(min=DatetimeMS(0), max=DatetimeMS(200), sparsity=1, trim_factor=1), |
| 2976 | lambda x: DatetimeMS(x).as_datetime(), |
| 2977 | ) |
| 2978 | |
| 2979 | def test_int(self): |
| 2980 | self.run_test_cases("Int", RangeOpts(min=0, max=200, sparsity=1, trim_factor=1), int) |
nothing calls this directly
no test coverage detected