View all services
Talk to QA Advisor
Browse the Knowledge Hub74 resources
/Test Cases/Wearable app sync test cases

Test cases

Wearable test cases, for the workout that never made it back

Twenty eight cases covering data recorded while the phone is out of range, duplicate records on resync, interrupted syncs, full on device buffers, conflict resolution, clock drift, standalone mode, health permission revocation, battery budgets, unworn device readings and totals reconciling across all three surfaces.

28cases/8coverage types/11state 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

WR-01

Pair the wearable with the phone application

TypeFunctionalPriorityHigh
Test data
A first time pairing followed by the initial data sync
Expected result
Pairing completes, the account is linked, and existing data on the phone appears on the device without requiring a manual trigger.
WR-02

Record data while the phone is out of range

TypeStatePriorityHigh
Test data
Leave the phone behind, record an activity on the watch, then return
Expected result
Everything recorded is buffered on the device and synced on reconnection. Losing it is the defect this whole set exists to prevent.
WR-03

Sync a long offline period without duplication

TypeBoundaryPriorityHigh
Test data
Several days of readings accumulated offline, then reconnected
Expected result
Every record arrives exactly once. Sync is retried on unreliable transports, so records need stable identifiers to survive redelivery.
WR-04

Resume an interrupted sync

TypeStatePriorityHigh
Test data
Move out of range partway through a large sync, then return
Expected result
Resumes from where it stopped rather than restarting, and no partially transferred record is committed as complete.
WR-05

Handle a full on device buffer

TypeBoundaryPriorityHigh
Test data
Record beyond the device storage allocation while disconnected
Expected result
Documented behaviour applied and the user is warned before data is lost, rather than the oldest readings being discarded silently.
WR-06

Resolve a conflict between device and phone

TypeBoundaryPriorityHigh
Test data
The same activity edited on the phone and on the watch while disconnected
Expected result
Documented conflict rule applied consistently, and the user is asked when the resolution would discard something they entered.
WR-07

Order records correctly across a timezone change

TypeBoundaryPriorityHigh
Test data
Records made either side of a timezone change and a daylight saving transition
Expected result
Chronological order is correct, each record keeps the timezone it was recorded in, and a day boundary is evaluated consistently on both devices.
WR-08

Handle the watch clock drifting from the phone

TypeBoundaryPriorityHigh
Test data
A device clock offset by several minutes from the phone at the time of recording
Expected result
Timestamps are reconciled or the offset is recorded, so a reading does not appear to occur before the activity that produced it.
WR-09

Operate in standalone mode without the phone

TypeFunctionalPriorityHigh
Test data
The phone powered off, with the watch on its own network connection
Expected result
Documented standalone features work independently, and anything requiring the phone states so rather than failing with a generic error.
WR-10

Handle the companion app being uninstalled

TypeNegativePriorityHigh
Test data
Uninstall the phone application while the watch app is installed
Expected result
Watch app reports the disconnection clearly and buffered data is preserved or exported rather than discarded on the next launch.
WR-11

Unpair and re-pair without duplicating history

TypeStatePriorityHigh
Test data
Unpair, re-pair, then compare the history on both devices
Expected result
Records are matched rather than re-imported, so a re-pair does not double every historical entry.
WR-12

Pair with a second phone or a replacement device

TypeStatePriorityMedium
Test data
Move the wearable to a new phone signed into the same account
Expected result
History follows the account, the previous pairing is cleanly released, and data is not stranded on the old device.
WR-13

Request health permissions correctly

TypeSecurityPriorityHigh
Test data
Grant some health data types and deny others
Expected result
Only the granted types are read, denied types degrade the feature with an explanation, and the app does not infer denied data from other sources.
WR-14

Detect a health permission revoked later

TypeStatePriorityHigh
Test data
Revoke a previously granted health permission in system settings
Expected result
Detected on next use rather than assumed, reading stops immediately, and already synced data is handled per the documented retention rule.
WR-15

Protect health data at rest and in transit

TypeSecurityPriorityHigh
Test data
Inspect on device storage, the sync payload and any logs
Expected result
Encrypted in transit and at rest, absent from logs and analytics, and not transmitted to any third party without explicit consent.
WR-16

Keep battery consumption within budget

TypePerformancePriorityHigh
Test data
Continuous recording for a full day with the app active
Expected result
Drain stays inside the stated budget. An app that flattens the battery by mid afternoon stops recording, which is data loss by another route.
WR-17

Reduce activity in low power mode

TypeStatePriorityHigh
Test data
Enter the device low power state during an active recording
Expected result
Sampling reduces rather than stopping, the user is told what changed, and the recording is not silently abandoned.
WR-18

Continue recording when the screen is off

TypeStatePriorityHigh
Test data
Start a recording, lower the wrist, and leave the screen off for an extended period
Expected result
Recording continues through the background mechanism intended for it rather than pausing whenever the display sleeps.
WR-19

Handle the app being killed mid recording

TypeStatePriorityHigh
Test data
Force stop the watch app during an active recording
Expected result
Data captured up to that point survives and the partial session is recoverable rather than discarded as incomplete.
WR-20

Update a complication or watch face element

TypeFunctionalPriorityMedium
Test data
A complication showing a live figure across a day, including after a sync
Expected result
Updates within the platform budget, never shows a stale figure without indicating its age, and degrades to a placeholder rather than a blank.
WR-21

Deliver notifications without duplicating the phone

TypeFunctionalPriorityMedium
Test data
A notification arriving while both devices are active, and while only the watch is worn
Expected result
Delivered to one device according to platform convention, and dismissing it on one clears it on the other.
WR-22

Complete a task on the smallest supported screen

TypeCompatibilityPriorityHigh
Test data
Every core journey on the smallest supported device size at the largest text setting
Expected result
No control is clipped or unreachable, scrolling reaches every action, and no journey depends on text that cannot be read at that size.
WR-23

Handle input methods available on the device

TypeCompatibilityPriorityMedium
Test data
Touch, crown or bezel rotation, voice input and a paired keyboard where supported
Expected result
Each supported method works for every input, and no task requires typing where the device provides no practical way to type.
WR-24

Work correctly with wet hands or a glove

TypeCompatibilityPriorityMedium
Test data
Touch input with water on the screen and with the platform water lock engaged
Expected result
Documented behaviour applies, accidental input is rejected while locked, and an active recording is not disrupted by the lock state.
WR-25

Detect that the device is not being worn

TypeStatePriorityMedium
Test data
Remove the device during an active recording
Expected result
Readings from an unworn device are marked or discarded rather than recorded as genuine measurements, which would corrupt the day totals.
WR-26

Migrate on device data across an app update

TypeCompatibilityPriorityHigh
Test data
Unsynced buffered data present when the watch app is updated
Expected result
Buffer survives the update and syncs afterwards, rather than being discarded because the storage format changed.
WR-27

Reconcile totals between watch, phone and server

TypeStatePriorityHigh
Test data
A full day of activity compared across all three surfaces
Expected result
All three agree. A daily total that differs between the watch and the phone is the most visible and most reported wearable defect.
WR-28

Operate the watch app with accessibility features enabled

TypeAccessibilityPriorityMedium
Test data
Screen reader enabled at the largest text size with reduced motion
Expected result
Every control is labelled and reachable, values are announced with their units, and haptic feedback is not the only signal for an outcome.

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. Anything that loses data recorded on the device, duplicates it on sync, or drains the battery to the point the device stops recording is High. Small screen usability issues are Medium unless they block a task.

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

Leave the phone at home

Syncing while both devices sit on a desk proves nothing. These four conditions are where wearable data is lost or doubled.

Record with the phone out of range

Then come back and check every record arrived. Losing a workout or a health reading is the one defect users never forgive, and it is invisible when testing side by side.

Interrupt the sync halfway

Walk out of range mid transfer. Sync retries over unreliable transports, so records need stable identifiers or the second attempt duplicates everything already sent.

Wear it for a full day

Battery is a correctness concern here, not a performance one. An app that flattens the battery by mid afternoon stops recording, which is data loss by another route.

Compare all three totals

Watch, phone and server for the same day. A daily figure that differs between devices is the most visible and most reported wearable defect there is.

What Most Sets Miss

Why wearable defects lose data

A wearable is a device that is routinely disconnected from the thing it syncs to, which makes it a distributed system rather than an accessory. Everything recorded while the phone is elsewhere lives only on the watch until it is transferred, and the transfer happens over a transport that drops constantly. That produces the two defects worth building this set around: data that never arrives, and data that arrives twice because the sync retried. Both need stable record identifiers and a resumable transfer, and neither shows up when both devices are sitting on the same desk.

Buffering has a limit and that limit needs a defined behaviour. A device recording for days without a phone will fill its allocation, and silently discarding the oldest readings is the worst available option because the user has no idea it happened. Conflict resolution belongs in the same category: the same activity edited on both devices while disconnected has to resolve by a documented rule, and the user should be asked whenever resolving it would throw away something they typed.

Time is unusually hard here because there are two clocks. A watch that has drifted from the phone will produce timestamps that place a reading before the activity that generated it, and a timezone change mid day will reorder records or move them across a day boundary so the daily totals disagree. Recording the timezone with each entry and reconciling the offset at sync are both cheap, and both are commonly skipped.

Finally, battery is a correctness concern on a wearable rather than a performance nicety. An app that drains the battery by mid afternoon stops recording for the rest of the day, which the user experiences as missing data rather than as poor battery life. The related cases are the low power state, where sampling should reduce rather than stop, and the screen being off, where recording must continue through the intended background mechanism rather than pausing every time the wrist drops.

Suggest an improvement

Testing a wearable or companion app?

QAble tests wearable applications on real devices, including offline buffering and resync, conflict resolution, health data handling and battery behaviour over a full day.

Wearable application 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 net banking transactions

Test cases
28 cases on duplicate debits from a retried request, concurrent transfers against one balance, daily limits across channels, beneficiary cooling periods, second factor binding and reconciliation.

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.

Test cases for outbound webhooks

Test cases
28 cases on retry backoff and dead letter stores, one dead consumer degrading the pipeline, payload signing and replay windows, out of order delivery and endpoint SSRF.

Test cases for background jobs and queues

Test cases
28 cases on work outliving the visibility timeout, idempotent handlers, poison messages, priority starvation, scheduler overlap across instances and graceful drain.

Test cases for real time features and websockets

Test cases
28 cases on messages lost in the reconnect gap, half open connections, per channel authorisation, tokens expiring mid connection, backpressure and fanout across instances.

Test cases for file storage and media processing

Test cases
28 cases on signed URL scope and expiry, serving before scanning completes, content type sniffing, metadata stripping, orphaned objects and derivative failures.

Test cases for CSV import and bulk operations

Test cases
28 cases on reruns duplicating successes, delimiters inside quoted fields, byte order marks, leading zeros, ambiguous dates and bulk action scope.

Test cases for feature flags and progressive rollout

Test cases
28 cases on unreachable flag services, unstable bucketing, rollouts that reshuffle users, kill switch latency, server and client mismatch and stale flags.

Test cases for Android app lifecycle and permissions

Test cases
28 cases on state lost to process death, configuration changes, permanent permission denial, revocation while backgrounded, doze and battery restrictions.

Test cases for iOS app lifecycle and permissions

Test cases
28 cases on the keychain surviving uninstall, suspended termination, limited photo access, allow once location, app switcher snapshots and biometric invalidation.

Test cases for VR and AR experiences

Test cases
28 cases on the frame rate comfort floor, tracking loss, guardian boundaries, involuntary camera movement, AR anchor drift and spatial data privacy.

Test cases for IoT device pairing and telemetry

Test cases
28 cases on offline buffering and reconnect floods, fleet wide reconnection storms, shared credentials, wrong device clocks and stale queued commands.

Test cases for embedded firmware update

Test cases
28 cases on power loss mid write, automatic rollback and health confirmation, signature and anti rollback checks, staged rollouts and recovery mode.

Test cases for user profile and account settings

Test cases
28 cases on partial saves reported as success, optimistic updates the server rejected, mass assignment through a profile form, avatar content inspection and session invalidation.

Test cases for account deletion and data export

Test cases
28 cases on export links that must be authorised and expiring, deletion cascading to storage, caches, logs and processors, grace periods, legal holds and deadlines.

Test cases for consent and cookie management

Test cases
28 cases on cookies and tracking requests firing before consent, reject parity with accept, tag manager bypass, withdrawal, cached banners and server side forwarding.

Test cases for notification preferences and delivery

Test cases
28 cases on opt outs honoured on one channel and ignored on another, marketing sent as transactional, unsubscribe scope, imports resetting consent and digest timezones.

Test cases for admin impersonation and support access

Test cases
28 cases on actions attributed to the customer instead of the admin, credential exposure, chained and upward impersonation, session expiry and immutable access records.

Test cases for audit logs and activity history

Test cases
28 cases on forged entries through log injection, immutability and tamper detection, actor attribution across impersonation and jobs, retention and legal holds.

Want your sync integrity proven, not assumed?

QAble covers functional, state and performance paths with ISTQB-certified engineers. Start with a free QA audit of your app.

Talk to QA Advisor