| Conditions | 1 |
| Total Lines | 9 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """Test DescStats message.""" |
||
| 11 | @classmethod |
||
| 12 | def setUpClass(cls): |
||
| 13 | """[Controller2Switch/DescStats] - size 1056.""" |
||
| 14 | super().setUpClass() |
||
| 15 | super().set_raw_dump_file('v0x01', 'ofpt_desc_stats_reply') |
||
| 16 | super().set_raw_dump_object(StatsReply, xid=14, |
||
| 17 | body_type=StatsType.OFPST_DESC, |
||
| 18 | flags=0, body=_get_desc_stats()) |
||
| 19 | super().set_minimum_size(12) |
||
| 20 | |||
| 28 |