Skip to content

Commit

Permalink
wire startup to grpc sync
Browse files Browse the repository at this point in the history
Signed-off-by: Kavindu Dodanduwa <[email protected]>
  • Loading branch information
Kavindu-Dodan committed Jan 24, 2023
1 parent aeb59da commit ad40f3d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkg/sync/grpc/grpc_sync_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package grpc

import "testing"

func TestUrlToGRPCTarget(t *testing.T) {
type args struct {
url string
}
tests := []struct {
name string
args args
want string
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := UrlToGRPCTarget(tt.args.url); got != tt.want {
t.Errorf("UrlToGRPCTarget() = %v, want %v", got, tt.want)
}
})
}
}

0 comments on commit ad40f3d

Please sign in to comment.