本文整理汇总了Python中jasmin.protocols.smpp.stats.SMPPServerStatsCollector.set方法的典型用法代码示例。如果您正苦于以下问题:Python SMPPServerStatsCollector.set方法的具体用法?Python SMPPServerStatsCollector.set怎么用?Python SMPPServerStatsCollector.set使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jasmin.protocols.smpp.stats.SMPPServerStatsCollector
的用法示例。
在下文中一共展示了SMPPServerStatsCollector.set方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_exceptions
# 需要导入模块: from jasmin.protocols.smpp.stats import SMPPServerStatsCollector [as 别名]
# 或者: from jasmin.protocols.smpp.stats.SMPPServerStatsCollector import set [as 别名]
def test_exceptions(self):
stats = SMPPServerStatsCollector().get(cid = 'test_exceptions')
self.assertRaises(KeyNotFound, stats.get, 'anything')
self.assertRaises(KeyNotFound, stats.set, 'anything', 22)
self.assertRaises(KeyNotFound, stats.inc, 'anything')
stats.set('created_at', datetime.now())
self.assertRaises(KeyNotIncrementable, stats.inc, 'created_at')
示例2: test_stats_set
# 需要导入模块: from jasmin.protocols.smpp.stats import SMPPServerStatsCollector [as 别名]
# 或者: from jasmin.protocols.smpp.stats.SMPPServerStatsCollector import set [as 别名]
def test_stats_set(self):
stats = SMPPServerStatsCollector().get(cid = 'test_stats_set')
self.assertEqual(stats.get('bind_rx_count'), 0)
stats.set('bind_rx_count', 2)
self.assertEqual(stats.get('bind_rx_count'), 2)