lolly/internal/e2e/e2e_test.go
xfy dd6b61f987 test(e2e): 添加 SSL/TLS E2E 测试框架
- e2e_test.go: E2E 测试基础设施初始化
- ssl_e2e_test.go: SSL 握手、TLS 版本、加密套件、mTLS 测试
- 使用 testcontainers-go 进行容器化测试

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-22 14:59:21 +08:00

14 lines
184 B
Go

//go:build e2e
package e2e
import (
"testing"
_ "github.com/testcontainers/testcontainers-go"
)
func TestE2ESetup(t *testing.T) {
t.Log("E2E test infrastructure initialized")
}