Tagged Questions
3
votes
5answers
348 views
How should unit tests be documented?
I'm trying to improve the number and quality of tests in my Python projects. One of the the difficulties I've encountered as the number of tests increase is knowing what each test does and how it's ...
0
votes
2answers
179 views
How to change docstring of TestCase Class in Python?
In Python 2.5 (Jython actually), for the UnitTest TestCase Class - there's is no SetUpClass method, and __init__ is not really acceptable (no refference to self).
When I try to change docstring inside ...
0
votes
2answers
85 views
how to change the test description of python (2.7) untitest
It seems that the unittest module has been changed a lot in Python 2.7
I have a test case:
class DemoTest(unittest.TestCase):
def test_foo(self):
"""Test foo"""
pass
The console ...