- e2e_test.go: E2E 测试基础设施初始化 - ssl_e2e_test.go: SSL 握手、TLS 版本、加密套件、mTLS 测试 - 使用 testcontainers-go 进行容器化测试 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
14 lines
184 B
Go
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")
|
|
}
|