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
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / leena
Assumptions
balance = 5000 is active*
Days in Months = 30*
negative balance inactivates account*
1. balance = 5000 ->Account active
2. balance = 5001 ->Account active
3. balance = 4999 AND (Currentdate - last transaction date)
<= 30 ->Account active
4. balance = 4999 AND (Currentdate - last transaction date)
> 30 ->Account inactive
5. balance = 0 AND (Currentdate - last transaction date)
<= 30 ->Account active
5. balance = 0 AND (Currentdate - last transaction date)
> 30 ->Account inactive
6. balance < 0 ->Account inactive
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / dayakar
hai friends...
as per my knowledge i found some mistakes Priya's, Raju's
and Ashish Mahabaleshwarkar
Priya wrote in her 2nd step A/C bal is <5000 it is active
but it is inactive.
Raju wrote in her 2nd scenario A/C bal =5000 it is inactive.
I think here account is active.
Ashish wrote A/c balance = 5001, a/c becomes inactive. But
it should be active.
thank you friends. I have made any mistakes please give me
feed back.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / priya
Test cases
1..chk for a/c balance >5000 (6000) ,then a/c shld be active
2 chk for a/c balance <5000 (4000),then a/c shlb in active.
3.chk for a/c bal is 5000 (5000),then a/c shld be inactive.
4.chk for zero balance,then a/c shld be inactive.
5.if a/c bal is less than 5000,then the a/c holder have to
pay some fee r fine.
6.if the person lost ATM card,then his/her a/c shld be in
active upon his request.
I think these r the possible cases..
Thank you.
| Is This Answer Correct ? | 10 Yes | 4 No |
Answer / shakeel
If account balance <= 5000 and (CurrentDate -
lastActivityDate) >= 30 days or 1 month then it should be
inactive.
If account balance >= 5000 then it should be active.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rubi
i feel that no one has checked for the balance amt < 5000
for a month other than sakeel.
- chk for the bal amt > 5000
expected result : acct shd b active
- chk for the bal amt = 5000
expected result : acct shd b active
- chk for the bal amt < 5000 if yes
chk for the days ( current date -last transaction date)
if days >=30 then acct shd b inactive.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / asc
no need for so many cases. Provided that the above is the
only requirement that you have,
A/c balance < 5000, a/c becomes inactive &
A/c balance > 5000, a/c becomes active
should do the job
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / pooja
Here we should apply the BVA.Raju's answer is correct
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / gyan
A/c balance = 4999 a/c becomes inactive
A/c balance = 5000, a/c becomes active
A/c balance = 5001, a/c becomes active
Take any value such as A/c balance < 5000 except 4999 then
a/c becomes inactive
Take A/c balance = 0 then a/c becomes inactive
Take any value such as A/c balance > 5000 except 5001 then
a/c becomes active
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / ashish mahabaleshwarkar
A/c balance = 4999, a/c becomes inactive &
A/c balance = 5000, a/c becomes active
A/c balance = 5001, a/c becomes inactive &
I think that much combinations are enough to test this
scnario.
| Is This Answer Correct ? | 1 Yes | 0 No |
How to write simple test cases?
write test cases for this senario if a job fails it should get restarted again this should happen for three times if it fails again then it should quit?
to write test cases for fuel guage?
Hi, i attended interview in seimens they asked me suppose u have a car which is used by VIP and it has 2 alarms one is at front and other is back when ever smoke or fire is near to car it will detect it and beep alaram so wat r the possible test cases u can write plz give the answer
how we canwrite a test case on computer?
How to write test case on paper and pen.
Do you write test plan and test case?
Please give me a test case scenario for search engine covering all the fuctionalities
write the test cases for a+b=c?
9 Answers Aloha Technology, SAP Labs,
please can anybody tell me, how to indentify the test cases which can be automated from a given set of test cases, say 20.
If I give u refill which cost is 5000 & I ll give u refill then how u find that refill cost is right or wrong? & that refill is new in market.
What is the difference between test scenarios, test cases, and test script?