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 |
regression testing falls under white box or black box testing?
What is Initial Configuration?
If I have to write the test cases for any report & there is date box.then may I have to write only select date or have to write all steps required for selecting date
Explain transaction testing?
Write a test case of login window?
If there are 10 steps for a test case. and for this test case there are 6 expected results. should I write 6 exp. results in the Expected Result column for a single tes case
How to perform a stress test on an ATM machine? (Note ATM is a Bank ATM say Citibank, IICICI etc)
my namjad . firefox doesn't open yahoo page but other page open so what is reason I'm again install but is not working
test cases for bus transport (TNSTC)
how to write test cases in interview exam like one website it contain a/c # text box, current bill amount text box,sms offer,calling offer,internet these 3 are list boxes and remindmelater,continue these 2 are buttons. and qu is like 1.user doesn't have any dues from past 90 days,2.whose bill amount >= rs2000 from past 6 months. use this 2qu write testcases.
How can we write a good test case?
In a log in page what will be test procedure, test scenario, test description & test steps?