21 lines
496 B
Python
21 lines
496 B
Python
"""
|
|
安全测试套件初始化文件
|
|
|
|
作者: 张翔
|
|
日期: 2026-04-01
|
|
"""
|
|
|
|
from .test_jwt_security import TestJWTSecurity
|
|
from .test_sql_injection import TestSQLInjection
|
|
from .test_xss_protection import TestXSSProtection
|
|
from .test_auth_security import TestAuthenticationSecurity
|
|
from .test_permission_boundary import TestPermissionBoundary
|
|
|
|
__all__ = [
|
|
"TestJWTSecurity",
|
|
"TestSQLInjection",
|
|
"TestXSSProtection",
|
|
"TestAuthenticationSecurity",
|
|
"TestPermissionBoundary",
|
|
]
|