if account balance less than 5000 for a month ,account
should become in active. if bal greater than 5000 account
should b active. Write test cases for the above scenario
Answer Posted / raju
If account balance = 4999 then it should be inactive.
If account balance = 5000 then it should be inactive.
if account balance = 5001 then it should be active.
This is the boundary condition which points the error prone
ares by the developers. If these conditions are passed then
most of the conditions are passed like 4000, 6000
| Is This Answer Correct ? | 26 Yes | 2 No |
Post New Answer View All Answers
how to test stand alone programs?
Test a function that reads a file into memory, say ReadFileToMemory( FILE * pFile, BYTE * pMem, DWORD numBytes)
Elaborate test plan and content availability in test plan.
Explain the unit testing?
Can you list down a few characteristics of a test case?
Explain the branch coverage testing?
WE WANT HEALTHINSURENE PROJECT FUNCTIONAL TEST CASES
How to write test case for this scenario. If the Zip Code field is populated, the system shall compare the zip code value entered to the zip code value in the Family Individual Information Tab
How to test a stored procedure?
How to write test case for this scenario. The system shall compare the requested name with the Service Member Name field in the database
How would you do " Keeping two folders in sync testing"
What is gray box testing?
# 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?
How to test Webservices and how can we write test cases for that
You have designed test cases to provide 100% statement and 100% decision coverage for the following fragment of code. If width > length then biggest_dimension = width else biggest_dimension = length end_if the following has been added to the bottom of the code fragment above. Print 'biggest dimension is ' &biggest_dimensionprint 'width: ' & width print 'length: ' & length how many more test cases are required?