0 votes
in TestLink by
What is a good test case?

1 Answer

0 votes
by

A test case is a sequence of operations controlled by constraints to determine an application, product or service is working correctly to the expectations.

Make sure it covers all the test conditions and provides a proper definition.

Next, read the below examples and see the difference between a bad and good test case.

Bad test case.

  • Verify if login works.

Good test case.

  • Open the login screen, enter the username – xyz@testmail.com and password as “12345678”.

...