(self)
| 3467 | assert_(c.flags[flag]) |
| 3468 | |
| 3469 | def test_require_each(self): |
| 3470 | |
| 3471 | id = ['f8', 'i4'] |
| 3472 | fd = [None, 'f8', 'c16'] |
| 3473 | for idtype, fdtype, flag in itertools.product(id, fd, self.flag_names): |
| 3474 | a = self.generate_all_false(idtype) |
| 3475 | self.set_and_check_flag(flag, fdtype, a) |
| 3476 | |
| 3477 | def test_unknown_requirement(self): |
| 3478 | a = self.generate_all_false('f8') |
nothing calls this directly
no test coverage detected