github.com/prebid/prebid-server/v2@v2.18.0/adapters/smarthub/smarthub_test.go (about) 1 package smarthub 2 3 import ( 4 "testing" 5 6 "github.com/prebid/prebid-server/v2/adapters/adapterstest" 7 "github.com/prebid/prebid-server/v2/config" 8 "github.com/prebid/prebid-server/v2/openrtb_ext" 9 "github.com/stretchr/testify/assert" 10 ) 11 12 func TestJsonSamples(t *testing.T) { 13 bidder, buildErr := Builder(openrtb_ext.BidderSmartHub, config.Adapter{ 14 Endpoint: "http://prebid.smart-hub.io/pbserver?partnerName={{.Host}}&seat={{.AccountID}}&token={{.SourceId}}"}, config.Server{ExternalUrl: "http://hosturl.com", GvlID: 1, DataCenter: "2"}) 15 16 assert.NoError(t, buildErr) 17 adapterstest.RunJSONBidderTest(t, "smarthubtest", bidder) 18 }