feat: tipos TestServer y TestDB para utilidades de testing en Go core

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-13 02:00:11 +02:00
parent 092f14eff0
commit 97512e9a48
4 changed files with 69 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
package core
import (
"net/http"
)
// TestServer encapsula un servidor HTTP de test con su cliente y cleanup.
type TestServer struct {
URL string
Client *http.Client
Cleanup func()
}