| Conditions | 1 |
| Total Lines | 8 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """Test AggregateStatsRequest message.""" |
||
| 27 | def _get_match(): |
||
| 28 | """Function used to built Match instance used by AggregateStatsRequest.""" |
||
| 29 | return Match(in_port=80, dl_src="01:02:03:04:05:06", |
||
| 30 | dl_dst="01:02:03:04:05:06", dl_vlan=1, |
||
| 31 | dl_vlan_pcp=1, dl_type=1, |
||
| 32 | nw_tos=1, nw_proto=1, |
||
| 33 | nw_src='192.168.0.1', nw_dst='192.168.0.1', |
||
| 34 | tp_src=80, tp_dst=80) |
||
| 35 |