コード例 #1
0
ファイル: zktopo_test.go プロジェクト: nangong92t/go_src
func TestServingGraph(t *testing.T) {
	ts := NewTestServer(t, []string{"test"})
	defer ts.Close()
	test.CheckServingGraph(t, ts)
}
コード例 #2
0
ファイル: tee_topo_test.go プロジェクト: rjammala/vitess
func TestServingGraph(t *testing.T) {
	ts := newFakeTeeServer(t)
	test.CheckServingGraph(t, ts)
}
コード例 #3
0
ファイル: zktopo_test.go プロジェクト: pranjal5215/vitess
func TestServingGraph(t *testing.T) {
	ts := NewTestServer(t, []string{"test"})
	defer ts.Close()
	test.CheckServingGraph(context.Background(), t, ts)
}
コード例 #4
0
ファイル: tee_topo_test.go プロジェクト: littleyang/vitess
func TestServingGraph(t *testing.T) {
	ctx := context.Background()
	ts := newFakeTeeServer(t)
	test.CheckServingGraph(ctx, t, ts)
}