gin/codec/binding/api_test.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")
}
}