Connect to statseg
(self)
| 1006 | """Basic statseg tests""" |
| 1007 | |
| 1008 | def setUp(self): |
| 1009 | """Connect to statseg""" |
| 1010 | self.stat = VPPStats() |
| 1011 | self.stat.connect() |
| 1012 | self.profile = cProfile.Profile() |
| 1013 | self.profile.enable() |
| 1014 | |
| 1015 | def tearDown(self): |
| 1016 | """Disconnect from statseg""" |