LAZYFIX

测试数据生成器

按编程类型自动生成边界测试数据

nullNull / Undefined
null
Java null 참조点击复制
빈 문자열Empty / Whitespace
""
길이 0인 문자열点击复制
공백 하나Empty / Whitespace
" "
공백 문자 1개点击复制
탭 문자Empty / Whitespace
"\t"
탭 문자만 포함点击复制
줄바꿈Empty / Whitespace
"\n"
줄바꿈 문자만 포함点击复制
여러 공백Empty / Whitespace
" \t \n "
다양한 공백 문자 혼합点击复制
앞뒤 공백Special Cases
" hello "
trim 처리 테스트点击复制
매우 긴 문자열Boundary
"a".repeat(10000)
10,000자 반복 문자열点击复制
1문자Boundary
"a"
최소 길이 문자열点击复制
숫자만Format
"12345678"
숫자로만 구성된 문자열点击复制
특수문자만Special Cases
"!@#$%^&*()"
특수문자로만 구성点击复制
이모지Unicode / Encoding
"🎉🔥💯🚀✨"
이모지 문자 (4바이트 UTF-8)点击复制
CJK 문자Unicode / Encoding
"你好世界こんにちは"
중국어·일본어 혼합点击复制
아랍어 (RTL)Unicode / Encoding
"مرحبا بالعالم"
오른쪽→왼쪽 텍스트点击复制
한글 자모Unicode / Encoding
"ㄱㄴㄷㄹㅁㅂㅅ"
한글 자음만点击复制
Null 바이트Special Cases
"hello\0world"
문자열 중간 null 바이트点击复制
SQL InjectionSecurity (Injection)
"' OR 1=1 --"
SQL 인젝션 시도点击复制
SQL Injection 2Security (Injection)
"'; DROP TABLE users; --"
SQL 테이블 삭제 시도点击复制
XSS PayloadSecurity (Injection)
"<script>alert('xss')</script>"
크로스사이트 스크립팅点击复制
XSS imgSecurity (Injection)
"<img src=x onerror=alert(1)>"
img 태그 XSS点击复制
Path TraversalSecurity (Injection)
"../../../etc/passwd"
경로 탐색 공격点击复制
CRLF InjectionSecurity (Injection)
"header\r\nInjected: true"
HTTP 헤더 인젝션点击复制
백슬래시Special Cases
"C:\\Users\\test"
이스케이프 처리 테스트点击复制
따옴표 혼합Special Cases
"He said \"it's okay\""
작은/큰 따옴표 혼합点击复制
JSON 형식Format
"{\"key\": \"value\"}"
JSON 문자열点击复制
URL 인코딩 필요Format
"hello world&foo=bar"
URL 파라미터 충돌点击复制
Email 형식Format
"test@example.com"
이메일 형식 문자열点击复制
ZWJ SequenceUnicode / Encoding
"👨‍👩‍👧‍👦"
Zero-Width Joiner 결합 이모지点击复制

什么是边界测试?

什么是边界情况?

边界情况是正常范围边缘出现的极端输入值。这个工具会提前生成 null、空值、最大 / 最小值、Unicode、安全攻击字符串等容易遗漏的测试场景,以预防错误。

为什么重要?

生产环境中的大多数错误都来自边界情况。提前测试各种边界值和特殊输入,可以预防运行时错误、安全漏洞和数据损坏。