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) { if testing.Short() { t.Skip("Skipping long test in short mode") } ctx := context.Background() cfg := &TestAWSConfig{} SetCfgProvider(t, cfg) qcfg, cleanup := CreateAWSContainer(t, ctx, cfg, &CreateAWSConfig{}) assert.NotNil(t, qcfg) assert.NotNil(t, cleanup) cleanup() }