package static import ( "testing" "github.com/stretchr/testify/assert" ) func Test_GetOpts(t *testing.T) { t.Parallel() t.Run("WithName", func(t *testing.T) { opts := getOpts(WithName("test")) testOpts := getDefaultOptions() testOpts.withName = "test" assert.Equal(t, opts, testOpts) }) t.Run("WithDescription", func(t *testing.T) { opts := getOpts(WithDescription("test desc")) testOpts := getDefaultOptions() testOpts.withDescription = "test desc" assert.Equal(t, opts, testOpts) }) t.Run("WithLimit", func(t *testing.T) { opts := getOpts(WithLimit(5)) testOpts := getDefaultOptions() testOpts.withLimit = 5 assert.Equal(t, opts, testOpts) }) t.Run("WithAddress", func(t *testing.T) { opts := getOpts(WithAddress("test")) testOpts := getDefaultOptions() testOpts.withAddress = "test" assert.Equal(t, opts, testOpts) }) t.Run("WithPublicId", func(t *testing.T) { opts := getOpts(WithPublicId("test")) testOpts := getDefaultOptions() testOpts.withPublicId = "test" assert.Equal(t, opts, testOpts) }) }