mirror of
https://github.com/gin-gonic/gin.git
synced 2026-06-04 09:48:17 +08:00
13 lines
234 B
Go
13 lines
234 B
Go
package bindingcodec
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
// TestAPIInitialization tests that the API is properly initialized
|
|
func TestAPIInitialization(t *testing.T) {
|
|
if API == nil {
|
|
t.Fatal("API should not be nil after initialization")
|
|
}
|
|
}
|