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 |
hoe to write test cases for the below field --------------- --------------- browse upload
who will prepare enhacement report?mail me at gavaskarreddy149@gmail.com
What is the role of QA in a company that produces software?
build 1 bug is raised and it was closed by developer and build 2 is released in build 2 also same bug raised what is the satus of that bug. 1>reopen 2>open 3>new 4>defered
What is quick test professional and what test environment it supports?
# A large IT company is in the process of revising salary structure for its employees. The salary will be on the basis of assessed performance of the previous year for all employee who have completed six months or more. # The rules for salary revision are provided below :- Performance level 1 : Increase existing salary by 30% Performance level 2 : Increase existing salary by 20% Performance level 3 : Increase existing salary by 10% Performance level 4 : Increase existing salary by 5% Performance level 5 : No Increase # For those who have not completed six months, provide a flat increase of 7.5% in their salary. In addition to above provide a special loyalty allowance of Tk. 800 to all employees who have complete THREE years with the organization. # Compute the minimum number of paths that you would require to cover the application and how many test cases would you require?
write a test case for yahoo login page ? input data user:6 alpha numeric;password:10 letters....10 pstive test cases and 10 negative test cases?
5 Answers CTS, iGate, Magic Software,
what are the possible test cases of an VOIP phone
Can any one tell me how to write test data. i mean, to test each input, 2 test input(1 for +ve, & other for -ve) are given. so , for example, if i want to write test data for login form, how many test data should i write in test case?
Hi.........can any one tell me the basic format for writing test cases
Explain the component testing?
If the pseudo code below were a programming language ,how many tests are required to achieve 100% statement coverage? 1. If x=3 then 2. Display_messageX; 3. If y=2 then 4. Display_messageY; 5. Else 6. Display_messageZ; 7. Else 8. Display_messageZ; A. 1 B. 2 C. 3 D. 4