You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
507 B

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