1 package playground 2 3 import ( 4 "net/http" 5 "testing" 6 ) 7 8 func TestApolloSandboxHandler_Integrity(t *testing.T) { 9 testResourceIntegrity(t, func(title, endpoint string) http.HandlerFunc { 10 return ApolloSandboxHandler(title, endpoint) 11 }) 12 } 13