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