package s3 import ( "reflect" "testing" "wallet-system/internal/conf" "wallet-system/internal/pkg/aws/s3" ) func TestNewClientS3(t *testing.T) { type args struct { c *conf.Aws } tests := []struct { name string args args want *s3.S3Client }{ // TODO: Add test cases. } for _, tt := range tests { t.Run(tt.name, func(t *testing.T) { if got := NewClientS3(tt.args.c); !reflect.DeepEqual(got, tt.want) { t.Errorf("NewClientS3() = %v, want %v", got, tt.want) } }) } }