在Python中运行单元测试模块

时间:2019-05-07 20:04:17

标签: python unit-testing command-line

我有单元测试。它的名字是test_mymod.py

摘要:

...
import mymod

import os
import unittest

class myTestCase(unittest.TestCase):
   def setUp(self):
...

运行此测试模块命令行的正确方法是什么? Python3。

几年来我没有使用过Python,显然已经忘记了很多。

1 个答案:

答案 0 :(得分:0)

python3 -m unittest test_mymod.py是运行unittest的可能方法之一。