我是靠谱客的博主 欢呼小笼包,最近开发中收集的这篇文章主要介绍在 unittest 中使用 logging 模块记录测试数据,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

# -*- 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 模块记录测试数据的全部内容,希望文章能够帮你解决在 unittest 中使用 logging 模块记录测试数据所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部