在unittest中使用 logging 模块记录测试数据的方法
程序员文章站
2022-03-28 09:01:13
如下所示:
# -*- coding:utf-8 -*-
import sys
import logging
import unittest
import...
如下所示:
# -*- coding:utf-8 -*- import sys import logging import unittest import os reload(sys) sys.path.append(os.path.dirname(os.path.abspath(__file__)) + r'\..') # 返回脚本的路径 logging.basicconfig(level=logging.debug, format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s', datefmt='%a, %d %b %y %h:%m:%s', filename='log_test.log', filemode='w') logger = logging.getlogger() class sometest(unittest.testcase): def testsomething(self): logger.debug("this= %r", 'aaa') logger.debug("that= %r", 'bbb') # etc. self.assertequals(3.14, 3.14, 'nonono') if __name__ == "__main__": unittest.main()
生成的日志文件内容如下:
wed, 17 may 2017 15:04:53 log_test.py[line:19] debug this= 'aaa' wed, 17 may 2017 15:04:53 log_test.py[line:20] debug that= 'bbb'
pydev unittesting: how to capture text logged to a logging.logger in “captured output”
以上这篇在unittest中使用 logging 模块记录测试数据的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: 拔罐减肥是否真的有效
推荐阅读
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
在Python中关于使用os模块遍历目录的实现方法
-
使用aggregate在MongoDB中查询重复数据记录的方法
-
在unittest中使用 logging 模块记录测试数据的方法
-
详解Python中logging日志模块在多进程环境下的使用
-
SqlServer2005中使用row_number()在一个查询中删除重复记录的方法
-
在Python中关于使用os模块遍历目录的实现方法
-
使用aggregate在MongoDB中查询重复数据记录的方法
-
详解Python中logging日志模块在多进程环境下的使用
-
详解Python中logging日志模块在多进程环境下的使用