| Conditions | 1 |
| Total Lines | 10 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """Set Config message tests.""" |
||
| 11 | @classmethod |
||
| 12 | def setUpClass(cls): |
||
| 13 | """Configure raw file and its object in parent class (TestDump).""" |
||
| 14 | buffer = ControllerMaxLen.OFPCML_NO_BUFFER |
||
| 15 | super().setUpClass() |
||
| 16 | super().set_raw_dump_file('v0x04', 'ofpt_set_config') |
||
| 17 | super().set_raw_dump_object(SetConfig, xid=1201346349, |
||
| 18 | flags=ConfigFlag.OFPC_FRAG_NORMAL, |
||
| 19 | miss_send_len=buffer) |
||
| 20 | super().set_minimum_size(12) |
||
| 21 |