Scope for ATM Machine

How to write scope for ATM Machine

Questions by shaludoll

Editorial / Best Answer

kurtz182  

  • Member Since Nov-2009 | Dec 13th, 2009


User Interface
   1) screens have proper format and text
   2) buttons correspond to proper items on screens
   3) keypad entries are properly displayed
   4) can backspace to delete entries
   5) branding


Account Information
   1) debit or credit card information
   2) pin code
   3) transaction charge
   4) deposit limit per transaction
   5) deposit limit per day
   6) withdrawal limit per transaction
   7) withdrawal limit per day
   8) account status

       a) card active
       b) card inactive
          - expired
          - replaced
          - reported stolen
          - suspicious activity (internal)


Insert Card
   1) improper card
   2) proper card
       a) wrong way
       b) upside down
       c) correctly  
   3) asks for pin
       a) proper pin
       b) improper pin


Check Balance
   1) of checking account
   2) of savings account
   3) another transaction
       a) yes
       b) no
   4) get receipt
       a) yes
       b) no
   5) transaction charge (none)


Deposit
   1) to checking account
   2) to savings account
   3) amount
       a) upper limit (+.01 and -.01)
       b) lower limit (+.01 and -.01)
       c) nothing
   4) correct amount
       a) yes
       b) no
          - reenter      
   5) another transaction
       a) yes
       b) no
   6) get receipt
       a) yes
       b) no
   7) transaction charge (none)
    
Withdrawal
   1) from checking account
   2) from savings account
   3) amount
       a) upper limit (+.01 and -.01)
       b) lower limit (+.01 and -.01)
       c) nothing
   4) correct amount
       a) yes
       b) no
          - reenter      
   5) another transaction
       a) yes
       b) no
   6) get receipt
       a) yes
       b) no
   7) transaction charge (amount + acct type)
 

Fast Cash Withdrawal
   1) from checking account
   2) from savings account
   3) amount - 10, 20, 30, 50, 100 or 200

   4) correct amount
       a) yes
       b) no
          - reenter
   5) another transaction
       a) yes
       b) no      
   6) get receipt
       a) yes
       b) no
   7) transaction charge (amount + acct type)   

Showing Answers 1 - 15 of 15 Answers

Test Cases For ATM in Bank

1. Check Whether ATM is accepting your inserted card
2. Check whether ATM displays to Welcome screen when the card is valid
3. Check whether ATM is displays any 3 language and ask user to select it
4. Check whether the ATM accepts only the first language the user is selected
5. Check whether the ATM is displaying all the things in user selected language
6. Check whether ATM is asking for your PIN number
7. Check whether ATM is accepting your data`s
8. Check whether the ATM verify`s the card with the PIN number is correct
9. Check whether is is correct it moves to next screen
10. Check whether the PIN and the card is wrong it displays a warning message or asks user to retype the PIN number
11. Check whether the user retype the PIN number it is also wrong the ATM retains the card
12. Check whether the ATM displays the transactions screen and ask user to select any open from it
13. Check whether the user selects the withdrawal means it asks the savings or current a/c
14. Check whether the ATM asks the user to enter the amount to draw from the bank
15. Check whether the user enter upto the access limit if it exceeds it displays a warning message
16. Check whether the user gets the amount what he has been entered
17. Check whether the ATM asks the user to print the receipt if it is yes it gives balance of his account
18. Check whether the user gets the printed receipt the ATM returns back the card.

  Was this answer useful?  Yes

User Interface
   1) screens have proper format and text
   2) buttons correspond to proper items on screens
   3) keypad entries are properly displayed
   4) can backspace to delete entries
   5) branding


Account Information
   1) debit or credit card information
   2) pin code
   3) transaction charge
   4) deposit limit per transaction
   5) deposit limit per day
   6) withdrawal limit per transaction
   7) withdrawal limit per day
   8) account status

       a) card active
       b) card inactive
          - expired
          - replaced
          - reported stolen
          - suspicious activity (internal)


Insert Card
   1) improper card
   2) proper card
       a) wrong way
       b) upside down
       c) correctly  
   3) asks for pin
       a) proper pin
       b) improper pin


Check Balance
   1) of checking account
   2) of savings account
   3) another transaction
       a) yes
       b) no
   4) get receipt
       a) yes
       b) no
   5) transaction charge (none)


Deposit
   1) to checking account
   2) to savings account
   3) amount
       a) upper limit (+.01 and -.01)
       b) lower limit (+.01 and -.01)
       c) nothing
   4) correct amount
       a) yes
       b) no
          - reenter      
   5) another transaction
       a) yes
       b) no
   6) get receipt
       a) yes
       b) no
   7) transaction charge (none)
    
Withdrawal
   1) from checking account
   2) from savings account
   3) amount
       a) upper limit (+.01 and -.01)
       b) lower limit (+.01 and -.01)
       c) nothing
   4) correct amount
       a) yes
       b) no
          - reenter      
   5) another transaction
       a) yes
       b) no
   6) get receipt
       a) yes
       b) no
   7) transaction charge (amount + acct type)
 

Fast Cash Withdrawal
   1) from checking account
   2) from savings account
   3) amount - 10, 20, 30, 50, 100 or 200

   4) correct amount
       a) yes
       b) no
          - reenter
   5) another transaction
       a) yes
       b) no      
   6) get receipt
       a) yes
       b) no
   7) transaction charge (amount + acct type)   

yxl01

  • Sep 4th, 2010
 


How do you know you've tested all the paths and scenarios you need to test?

To ensure full or sufficient coverage, try Model-Based Testing (MBT) technique.  The idea is to create a model (state machine diagram) that describes the flow (behaviour) of the entire system and use MBT tool to generate minimum set of test sequences that cover all of the transitions in the model.  One of such tools TestOptimal.

  Was this answer useful?  Yes

Avdhesh

  • Nov 5th, 2016
 

What could be some of the out of scope items?

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions