How to write simple test cases?
Answers were Sorted based on User's Feedback
Answer / la
Any testcase simple or complex should have the following
basic requsites:
1)Steps (it lets a tester know how to proceed )
2)Expected Result
3)Actual Result
4)Pass/Fail
The tester has to follow the steps and see the actual
result shown by the system.If it matches with the expected
result then give the result as pass else as Fail.
| Is This Answer Correct ? | 10 Yes | 4 No |
Answer / anjali awasthi
Any testcase simple or complex should have the following
basic requsites:
1 test case id
2 description
3 procedure
4 input
5 expected result
6 actual result
7 status which is pass or fail.
| Is This Answer Correct ? | 1 Yes | 1 No |
could u please tell the testcases to test gmail
13 Answers Jamcracker, Snap On,
Pls tell me test cases for pepper grinder
Test case for flight reservation system
How to write test case for the library system?
can anyone please send me the sample testcases on how to write it into the testtemplates
How to write test case for this scenario. The Contact Information screen shall be displayed to the user during Case Update
write the test cases for traffic signal and sensor doors.
Explain the logic testing?
How should the test cases be framed to validate the excel sheet?
what is the test plan for ms-word
For the following piece of code, how many test cases are needed to get 100% statement coverage? Procedure X Read (Color) // Input color from user IF (Color == “Red”) THEN Call Roses(Color) ELSEIF (Color == “Blue”) THEN Call Violets(Color) ELSE PRINT “User is no Shakespeare” SaveToDatabase(Color) End Procedure X A. 5 B. 3 C. 1 D. 2
If I wrote test cases for Login Window with test case Name Login window & test case id L_01.Now if Name of Login window get changed in the next version.then May I have to change the Test case name & Test case id OR HAVE TO block the previous test case and write the new one