0 votes
in Python by
What is Test Discovery and what is command structure in Python?

1 Answer

0 votes
by

Test Discovery is the process of finding all tests present in a project folder and executing them automatically.

Test Discovery plays a vital role in automating all tests.

You can achieve it by running the below command from Project1 folder.

python -m unittest discover

discover is the option used for performing test discovery.

By default, unittest starts finding all tests from the working directory.

Related questions

0 votes
asked Jul 14, 2020 in Python by GeorgeBell
0 votes
asked Jun 30, 2020 in Python by GeorgeBell
...