github.com/prebid/prebid-server/v2@v2.18.0/adapters/ownadx/ownadx_test.go (about) 1 package ownadx 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.BidderOwnAdx, config.Adapter{ 14 Endpoint: "https://pbs.prebid-ownadx.com/bidder/bid/{{.AccountID}}/{{.ZoneID}}?token={{.SourceId}}"}, config.Server{ExternalUrl: "http://hosturl.com", GvlID: 1, DataCenter: "2"}) 15 16 assert.NoError(t, buildErr) 17 adapterstest.RunJSONBidderTest(t, "ownadxtest", bidder) 18 }