How do I run multiple Classes in a single test suite in Python using unit testing?

后端 未结 5 940
无人共我
无人共我 2021-02-01 03:09

How do I run multiple Classes in a single test suite in Python using unit testing?

5条回答
  •  遥遥无期
    2021-02-01 03:30

    I've found nose to be a good tool for this. It discovers all unit tests in a directory structure and executes them.

提交回复
热议问题