Python unittest.TestCase object has no attribute 'runTest'

前端 未结 4 2018
执笔经年
执笔经年 2020-12-30 22:28

For the following code:

import unittest

class Test(unittest.TestCase):
    def test1(self):
        assert(True == True)

if __name__ == \"__main__\":
    s         


        
4条回答
  •  无人及你
    2020-12-30 23:14

    You can run it like this:

    python -m unittest 
    

    I don't fully understand why it works though.

提交回复
热议问题