package test import ( "context" "testing" "queryorchestration/internal/serviceconfig" "queryorchestration/internal/serviceconfig/objectstore" "github.com/stretchr/testify/assert" ) type TestAWSConfig struct { serviceconfig.BaseConfig objectstore.ObjectStoreConfig } func TestCreateQueueContainer(t *testing.T) { t.Parallel() if testing.Short() { t.SkipNow() } ctx := context.Background() cfg := &TestAWSConfig{} net := DepNetwork.Get(t, ctx) qcfg := CreateAWSContainer(t, ctx, cfg, net) assert.NotNil(t, qcfg) }