(enum_type)
| 94 | |
| 95 | @pytest.mark.parametrize("enum_type", [m.flags_uchar, m.flags_uint]) |
| 96 | def test_enum_flag(enum_type): |
| 97 | bits02 = enum_type.bit0 | enum_type.bit2 |
| 98 | assert enum_type.bit0 in bits02 |
| 99 | assert enum_type.bit1 not in bits02 |
| 100 | assert enum_type.bit2 in bits02 |
| 101 | |
| 102 | |
| 103 | def test_export_values(): |
nothing calls this directly
no outgoing calls
no test coverage detected