Boundary Value Test Data Cheat Sheet — Every Edge Case You Need
The definitive boundary value cheat sheet for QA: integers, strings, dates, files, images, unicode. Copy-paste values ready for any framework.
2026-07-17 · By Avinash Kamble, reviewed by Priyanka G.
Great testers don't guess edge cases — they use a canonical list. Print this cheat sheet and paste it into every test plan.
Integers
0, 1, -1
INT32_MAX = 2147483647
INT32_MIN = -2147483648
INT64_MAX = 9223372036854775807
Any int with leading zeros: "007"
Any int with thousands separator: "1,000"
Scientific: "1e10"
NaN, InfinityStrings
Empty ""
Single space " "
Long: 255, 256, 1000, 10000 chars
Unicode: "café", "日本語", "🙂"
RTL: "مرحبا"
Zero-width space: "\u200B"
SQL injection: "'; DROP TABLE users;--"
XSS: "<script>alert(1)</script>"
Path traversal: "../../etc/passwd"Dates & times
1970-01-01T00:00:00Z (epoch)
2000-02-29 (leap year)
2100-02-29 (invalid — not a leap year)
2038-01-19T03:14:07Z (Y2038)
DST transitions (2nd Sun March, 1st Sun Nov)
Time zones: UTC, +14:00, -12:00Files & images
0-byte file
1-byte file
Max allowed size + 1
Mismatched extension (.jpg with PNG bytes)
Filename with spaces, unicode, emoji
Filename > 255 charsGenerate the fixtures
Every value above is preloaded in the "Boundary" preset of the Random Test Data Generator. Click, export CSV, feed into your data-driven runner.
Frequently asked questions
1.What's the difference between boundary and equivalence testing?
2.Do I need to test every integer boundary?
3.How do I test emoji handling?
4.Is fuzz testing better than boundary testing?
Practice these questions
Run a live QA mock interview tailored to this topic and get per-skill scoring in minutes.
Was this article helpful?
More from Manual Testing Basics
Test types, defect lifecycle, exploratory testing.
- Career & Interview PrepThe Honest Truth About Manual Testing Salaries in 2026 (Real Data)
- Manual TestingTest Pyramid Explained: A Practical Guide for QA (2026)
- Manual TestingHow to Write Test Cases for a Login Page (with Examples)
Keep building your QA edge
Pillar guidesContinue reading
Join the QA Community
Connect with fellow testers, share job leads, and get career advice.
Stop Reinventing the Wheel. Upgrade Your QA Arsenal.
Take your testing skills from beginner to Lead Engineer. Supercharge your daily workflow with our premium digital resources.
- Ready-to-use testing strategy templates
- Advanced API & UI automation guides
- ⏱️ Save 10+ hours a week on test planning


