in Python by (5.2k points)
Q. Which of the following commands run only one test case , present in sample_module.py using unittest?

a). python -m unittest

b). python -m unittest sample_module ---xxx

c). python -m unittest sample_module.TestCase1

d). python -m unittest sample_module.TestCase1.test_method1

Related questions

+1 vote
asked Jul 16, 2020 in Python by GeorgeBell (5.2k points)
0 votes
asked Jun 30, 2020 in Python by GeorgeBell (5.2k points)
0 votes
asked Jul 2, 2020 in Python by GeorgeBell (5.2k points)
...