(cls)
| 20 | |
| 21 | @classmethod |
| 22 | def setUpClass(cls): |
| 23 | super(TestSyslog, cls).setUpClass() |
| 24 | |
| 25 | try: |
| 26 | (cls.pg0,) = cls.create_pg_interfaces(range(1)) |
| 27 | cls.pg0.admin_up() |
| 28 | cls.pg0.config_ip4() |
| 29 | cls.pg0.resolve_arp() |
| 30 | |
| 31 | except Exception: |
| 32 | super(TestSyslog, cls).tearDownClass() |
| 33 | raise |
| 34 | |
| 35 | @classmethod |
| 36 | def tearDownClass(cls): |
nothing calls this directly
no test coverage detected