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