File: test_barrier_reply.py

package info (click to toggle)
python-openflow 2021.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,224 kB
  • sloc: python: 6,906; sh: 4; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 567 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""Barrier reply message tests."""
from pyof.v0x04.controller2switch.barrier_reply import BarrierReply
from tests.unit.test_struct import TestStruct


class TestBarrierReply(TestStruct):
    """Barrier reply message tests (also those in :class:`.TestDump`)."""

    @classmethod
    def setUpClass(cls):
        """Configure raw file and its object in parent class (TestDump)."""
        super().setUpClass()
        super().set_raw_dump_file('v0x04', 'ofpt_barrier_reply')
        super().set_raw_dump_object(BarrierReply, xid=5)
        super().set_minimum_size(8)