View all services
Talk to QA Advisor
Browse the Knowledge Hub56 resources
/Test Cases/Net banking transaction test cases

Test cases

Net banking test cases, where the defect costs real money

Twenty eight cases covering duplicate debits on retry, concurrent transfers against a single balance, per transaction and daily limits, beneficiary cooling periods, second factor binding, currency rounding, scheduled execution, reversal and statement reconciliation.

28cases/8coverage types/9security cases/FreeCSV download

All 28 test cases, ready to copy

Free to use and adapt, no sign-up. Download as CSV or Markdown, or copy it straight into your own tooling.

Last updated

28 worked examples

NB-01

Transfer to a registered beneficiary within available balance

TypeFunctionalPriorityHigh
Test data
Balance 50,000. Transfer 10,000 to an active registered beneficiary
Expected result
Debit of exactly 10,000, beneficiary credited, reference number issued, balance shows 40,000 and the ledger entry carries the same reference.
NB-02

Reject a transfer that exceeds available balance

TypeNegativePriorityHigh
Test data
Balance 50,000. Attempt 50,001
Expected result
Transfer refused before any debit, balance unchanged, and the message names available balance rather than ledger balance.
NB-03

Distinguish available balance from ledger balance

TypeFunctionalPriorityHigh
Test data
Ledger 50,000 with a 15,000 hold on an uncleared deposit
Expected result
Only 35,000 is transferable. Holds, uncleared funds and pending authorisations reduce what can be spent and are shown separately.
NB-04

Submit the same transfer twice by retrying the request

TypeSecurityPriorityHigh
Test data
Capture a successful transfer request and replay it with the same payload
Expected result
Second request returns the original result and creates no second debit. Without an idempotency key on the request, a retry is a duplicate payment.
NB-05

Press submit repeatedly before the response returns

TypeFunctionalPriorityHigh
Test data
Click confirm five times in two seconds on a throttled connection
Expected result
Exactly one debit. The control disables on first submit, and the server refuses the duplicate on the key rather than relying on the disabled button.
NB-06

Run two transfers concurrently against the same balance

TypeBoundaryPriorityHigh
Test data
Balance 10,000. Fire two transfers of 8,000 from two sessions at the same instant
Expected result
One succeeds and one is refused. The balance never goes negative. A read then write with no lock or conditional update allows both.
NB-07

Handle a transfer that times out with no response

TypeStatePriorityHigh
Test data
Kill the connection after the request is sent but before the response arrives
Expected result
Transaction resolves to a single definite state and is shown as pending until it does. It is never silently dropped, and the retry reuses the original key.
NB-08

Enforce the per transaction limit

TypeBoundaryPriorityHigh
Test data
Limit 200,000. Attempt 199,999, then 200,000, then 200,001
Expected result
First two succeed, third is refused. The limit is inclusive of the stated figure and is checked on the server, not only in the form.
NB-09

Enforce the daily cumulative limit across sessions

TypeBoundaryPriorityHigh
Test data
Daily cap 500,000. Send 250,000 from a browser and 250,001 from the mobile app
Expected result
Cumulative total is enforced across every channel. The second request is refused because the cap belongs to the account, not the session.
NB-10

Reset the daily limit at the correct boundary

TypeBoundaryPriorityMedium
Test data
Exhaust the cap, then transact at 23:59 and again at 00:01 in the account timezone
Expected result
Reset happens on the banking day boundary in the account timezone, not the device timezone or UTC.
NB-11

Apply the cooling period to a newly added beneficiary

TypeSecurityPriorityHigh
Test data
Add a beneficiary and attempt a transfer immediately
Expected result
Transfer is refused or restricted to the low value threshold until the cooling period elapses. This control is the main defence against account takeover.
NB-12

Require a second factor before the transfer is committed

TypeSecurityPriorityHigh
Test data
Complete the form, then abandon at the passcode step
Expected result
No debit occurs. The second factor gates the commit, not the confirmation screen that follows it.
NB-13

Refuse a reused or expired second factor code

TypeSecurityPriorityHigh
Test data
Submit a valid code twice, then submit one past its validity window
Expected result
Both attempts refused. A code is single use and time bound, and the failure message does not reveal which condition failed.
NB-14

Bind the second factor to the specific transaction

TypeSecurityPriorityHigh
Test data
Request a code for a 1,000 transfer, then use it to authorise a 100,000 transfer
Expected result
Refused. The code is bound to amount and beneficiary, and the message shown to the user states both so the value being approved is visible.
NB-15

Validate the account number and sort or routing code

TypeNegativePriorityHigh
Test data
Correct length but failing checksum, correct checksum for a closed account, and a code that does not exist
Expected result
Each is rejected with a distinct reason at entry time rather than accepted and returned days later, and no debit is held in the meantime.
NB-16

Confirm the beneficiary name returned by the network

TypeFunctionalPriorityHigh
Test data
Enter a valid account number belonging to a different name than typed
Expected result
Name returned by the receiving institution is displayed for confirmation before commit, and a mismatch requires explicit acknowledgement.
NB-17

Reject malformed and out of range amounts

TypeNegativePriorityHigh
Test data
Zero, negative, three decimal places, leading zeros, thousands separators, and an amount larger than the field type allows
Expected result
Each refused with a clear reason. Currency is handled in minor units as integers, never as a floating point value.
NB-18

Verify rounding on a currency converted transfer

TypeBoundaryPriorityHigh
Test data
Send an amount whose conversion produces a third decimal place
Expected result
Rounding rule is applied consistently and the debited total equals the sum of amount, fees and taxes to the minor unit with no residue.
NB-19

Show fees and taxes before commit and match them after

TypeFunctionalPriorityHigh
Test data
A transfer type that carries a fee and a tax on that fee
Expected result
Amounts quoted on the confirmation screen equal the amounts posted. A fee that appears only on the statement is a defect, not a disclosure.
NB-20

Schedule a future dated transfer and verify it executes once

TypeStatePriorityHigh
Test data
Schedule for the next working day, then check after execution
Expected result
Executes once on the correct date with the balance checked at execution time rather than at scheduling time, and is not replayed by the scheduler.
NB-21

Handle a scheduled transfer that falls on a non working day

TypeBoundaryPriorityMedium
Test data
Schedule on a bank holiday and on the twenty ninth of February in a non leap year
Expected result
Documented rule applied consistently, the adjusted date is shown at scheduling time, and the recurrence does not drift on later instalments.
NB-22

Cancel a scheduled or pending transfer

TypeStatePriorityMedium
Test data
Cancel a scheduled transfer, then attempt to cancel one already in flight
Expected result
Scheduled transfer cancels with no debit. An in flight transfer cannot be cancelled and says so plainly rather than appearing to succeed.
NB-23

Reverse a failed transfer and restore the balance

TypeStatePriorityHigh
Test data
Force a downstream rejection after the account has been debited
Expected result
Credit is posted back within the stated window, both entries appear on the statement with the same reference, and the balance returns to the correct figure.
NB-24

Reconcile the statement against the ledger

TypeStatePriorityHigh
Test data
Run twenty transactions including one reversal and one fee, then export the statement
Expected result
Opening balance plus every entry equals the closing balance, and the exported file agrees with the screen and with the downstream ledger.
NB-25

Expire an idle session before a transfer is completed

TypeSecurityPriorityHigh
Test data
Fill the form, idle past the timeout, then submit
Expected result
Submission is refused and re-authentication is required. The half completed transfer is discarded rather than resumed after login.
NB-26

Refuse a transfer initiated from another origin

TypeSecurityPriorityHigh
Test data
Post a valid transfer payload from a third party page using a live session cookie
Expected result
Refused. Anti forgery tokens and origin checks apply to every state changing request, and the second factor is requested independently.
NB-27

Operate the transfer flow with a keyboard and a screen reader

TypeAccessibilityPriorityMedium
Test data
Keyboard only navigation through amount, beneficiary and passcode fields
Expected result
Every control is reachable and labelled, errors are announced and linked to their field, and the amount is announced with its currency before commit.
NB-28

Write an audit record for every transaction and every refusal

TypeSecurityPriorityHigh
Test data
One successful transfer, one limit refusal and one failed second factor
Expected result
All three are recorded with actor, timestamp, amount, channel and outcome. The record is immutable and contains no full credential or passcode value.

What goes in each field

ID

Required

Stable identifier, prefixed by module.

Test case

Required

What is being verified, in one line.

Type

Functional, negative, boundary, security, state, performance, accessibility or compatibility. Use it to check coverage is spread rather than clustered on the happy path.

Priority

Risk based, measured in money. Anything that can move an amount twice, move the wrong amount, or leave the ledger disagreeing with the statement is High regardless of how rarely it happens.

Test data

The specific values, including the invalid and boundary ones.

Expected result

Required

The precise observable outcome, including message text where the wording itself is the requirement.

How To Use This

Replay the request and count the debits

A transfer that works once on a good connection proves very little. These four conditions are where one instruction becomes two, or none.

Replay the successful request

Capture a completed transfer and send the identical payload again. Without an idempotency key the account is debited twice, and the customer finds it before you do.

Fire two transfers at once

Two requests for 8,000 against a 10,000 balance, sent simultaneously from two sessions. A read then write with no conditional update lets both through and the balance goes negative.

Cut the connection mid flight

Kill the request after it is sent but before the response returns. The transaction must resolve to one definite state, and the retry must reuse the original key.

Reconcile rather than glance

Opening balance plus every entry must equal the closing balance, and the exported statement must agree with the screen and with the downstream ledger.

What Most Sets Miss

Why transfer defects survive testing

The duplicate debit is the defect this set exists for. A transfer is not a read: retrying it is not safe unless the server can recognise that it has already seen that instruction. Mobile networks drop responses constantly, users press confirm again when nothing happens, and client libraries retry automatically on timeout. Any of those produces a second identical request. The fix is an idempotency key generated before the first attempt and reused on every retry, with the server returning the original result rather than performing the work again. Testing on a stable office connection will never surface it.

Concurrency is the second, and it is invisible in sequential testing. Two transfers that each read a balance of 10,000, each decide that 8,000 is affordable, and each then write their result will both succeed. The account ends up overdrawn by an amount that no single test case would predict. This needs a conditional update or a lock on the balance row, and it needs to be tested by firing requests simultaneously rather than one after another.

Limits are routinely enforced in the wrong place. A daily cap belongs to the account, not to the session or the channel, so a cap that is checked in the browser form is bypassed by the mobile app, and one that is checked per session is bypassed by opening two. The same applies to the second factor: a code that is not bound to the amount and the beneficiary can be requested for a small transfer and spent on a large one.

Finally, money is not a floating point number. Amounts should be held as integers in minor units, because a rounding residue that is invisible on one transaction becomes a reconciliation break across a day of them. The test that catches this is not on the transfer screen at all: it is the one that adds up every entry on the statement and checks that the total equals the closing balance.

Suggest an improvement

Testing a banking or payments platform?

QAble tests transaction integrity end to end, including idempotency, concurrency, limit enforcement and reconciliation between the interface, the API and the ledger.

Banking software testing services

More test case sets

View all

Test cases for a login page

Test cases
25 cases across functional, negative, boundary, security, session and accessibility paths, including account enumeration and lockout.

Test cases for a registration form

Test cases
28 cases covering validation, duplicate accounts, email verification, password rules and the enumeration leak most signup forms ship with.

Test cases for search functionality

Test cases
28 cases across relevance, partial and fuzzy matching, filters, pagination, empty states, injection attempts and performance under load.

Test cases for a shopping cart

Test cases
27 cases on quantity limits, price recalculation, stock changes, coupon stacking, guest to account merge and cart persistence.

Test cases for checkout and payment

Test cases
30 cases including 3D Secure, declines, timeouts, duplicate charges, idempotency, refunds and partial captures.

Test cases for file upload

Test cases
28 cases on size and type limits, spoofed content types, malicious filenames, progress, resume, virus scanning and storage limits.

Test cases for forgot password

Test cases
26 cases on reset token expiry, single use enforcement, session invalidation and the enumeration and rate limit gaps that are routine here.

Test cases for OTP verification

Test cases
26 cases on expiry, resend throttling, attempt limits, code reuse, delivery failure and the brute force window teams forget to close.

Test cases for user roles and permissions

Test cases
26 cases on horizontal and vertical privilege checks, direct object access, role changes mid-session and permission inheritance.

Test cases for form validation

Test cases
27 rules-based cases on required fields, length and numeric boundaries, client and server parity, hidden field tampering and error accessibility.

Test cases for a date picker

Test cases
26 cases on timezone shifts, ambiguous day and month order, impossible dates, min and max limits, leap years and keyboard operation.

Test cases for pagination

Test cases
24 cases on ordering stability, records changing mid-session, page size caps, deep offset cost, permission-filtered totals and state restore.

Test cases for push notifications

Test cases
26 cases on app states, deep link routing, token release on sign out, lock screen privacy, preferences, provider failures and platform differences.

Test cases for reports and data export

Test cases
25 cases on permission filtering in the file, spreadsheet formula injection, encoding, typed numbers and dates, row limits and audit logging.

Test cases for a chatbot

Test cases
28 cases on paraphrased intents, context, fallback loops, human handoff, policy grounding, prompt injection and data scoping.

Test cases for wallet and UPI payments

Test cases
28 cases on payments that time out with no response, idempotency on retry, racing balances, caps across devices, collect request fraud, mandates and refunds.

Test cases for insurance claim submission

Test cases
28 cases on coverage at the date of loss, waiting periods, deductibles and sub limits, exclusions and riders, duplicate claims and settlement reconciliation.

Test cases for patient records in an EHR

Test cases
28 cases on duplicate detection and merge, wrong patient entry, units of measure, allergy and interaction alerting, break glass access and audit of reads.

Test cases for CRM lead management

Test cases
28 cases on duplicate leads under concurrency, routing and the unrouted fallback, round robin races, territory visibility, conversion and bulk import.

Test cases for an ERP purchase order

Test cases
28 cases on approval thresholds, amendments that must reset approval, budget commitment races, over receipt tolerance, three-way match and duplicate invoices.

Test cases for OTT video playback

Test cases
28 cases on bitrate recovery after a dip, DRM renewal mid stream, concurrent stream limits and leaked slots, resume conflicts, ad cue points and offline expiry.

Test cases for game level progression

Test cases
28 cases on save corruption during a crash write, cloud save conflicts, offline queue replay, unlock gating, currency exploits and purchase restore.

Test cases for a REST API

Test cases
28 cases on status code correctness, cross tenant resource access, mass assignment, idempotent retries, cursor pagination, rate limits and contract drift.

Test cases for SSO and social login

Test cases
28 cases on linking an account on an unverified email, state and code replay, redirect allow lists, token signature and issuer, deprovisioning and session rotation.

Test cases for subscription and billing

Test cases
28 cases on mid cycle proration, duplicate and out of order webhooks, renewal double charges, dunning and grace, trials, coupons, metered usage and tax.

Test cases for data tables, filters and sorting

Test cases
28 cases on unstable sorts across pages, filters that must reset pagination, selection surviving a filter change, bulk action scope and export fidelity.

Test cases for session timeout and concurrent login

Test cases
28 cases on tokens that survive sign out, refresh token reuse, idle against absolute lifetime, multi tab expiry, session limits and remote revocation.

Test cases for a multi step form wizard

Test cases
28 cases on values lost to back navigation, refresh and session expiry, step skipping, server side revalidation, duplicate submission and conditional branches.

Test cases for email verification

Test cases
28 cases on token reuse and expiry, invalidating earlier links, account enumeration, header injection, safe address change and mail scanner prefetching.

Test cases for dashboards and analytics widgets

Test cases
28 cases on reconciling against source rows, widgets that disagree, timezone aggregation, zero baselines, no data shown as zero and permission leaks in aggregates.

Test cases for booking and reservation

Test cases
28 cases on concurrent bookings for the last slot, inventory holds that leak, payment without a booking, cancellation boundaries and channel sync.

Test cases for mobile app install and update

Test cases
28 cases on migration chains across skipped versions, crashes during post upgrade migration, forced update lockouts, deep links and clean reinstall.

Test cases for accessibility (WCAG 2.2 AA)

Test cases
28 cases on keyboard only completion, focus management, live region announcements, contrast, reflow at 320 pixels, target size and screen reader verification.

Test cases for performance and load

Test cases
28 cases on spikes with no ramp, recovery after peak, soak and leak detection, pool exhaustion, cold caches, retry storms and data correctness under load.

Test cases for the OWASP Top 10

Test cases
28 cases on broken access control, mass assignment, injection across every input surface, credential stuffing, session invalidation, SSRF and exposed secrets.

Test cases for cross browser compatibility

Test cases
28 cases on storage that throws in private mode, blocked third party cookies, engine date parsing, mobile viewport units, in app browsers and ad blockers.

Test cases for database and data integrity

Test cases
28 cases on uniqueness under concurrency, lost updates, counter races, orphaned rows, migration and backfill safety, replica lag and verified restores.

Test cases for localisation and multi language support

Test cases
28 cases on text expansion, concatenated sentences, plural rules, locale date parsing, decimal separators, right to left layout, collation and encoding.

Want transaction integrity proven, not assumed?

QAble covers functional, boundary and security paths with ISTQB-certified engineers. Start with a free QA audit of your platform.

Talk to QA Advisor