简体   繁体   中英

Fuzzy unit testing in Python

I'd like to write a set of "fuzzy" unit tests in python. So far I've been using testtools , but switching to a different framework would be fine.

My test suite is aiming to test the performance of image-processing algorithms. I'd like to be able to have tests report fuzzy pass states. In other words, the results are "good enough" but it might be useful to investigate.

I have something like this:

suite = unittest.TestLoader().loadTestsFromTestCase(TestMyAlgorithm)
result = testtools.TestResult()

result.startTestRun()
try:
    suite.run(result)
finally:
    result.stopTestRun()

I'd like to use information in the result object to generate a report, but it looks like all of the information associated with passed tests has been tossed.

I'm wondering if I'm abusing the notion of a unit test to fit this sort of investigation.

Is there a standard way to perform this sort of testing in python?

假设您的目标是真正的报告,请获取一个可以生成xml格式的详细报告的工具(例如, nosetestspy.test可能具有类似的支持),然后在第二步中处理所需的报告。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM