cp_test.go 250 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12
package test

import (
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/rpc"
	"testing"
)

func TestGetCpRelation(t *testing.T) {
	cpRelation, err := rpc.GetUserCpRelation(domain.CreateModelNil(), 7642)
	t.Logf("%v-%v", cpRelation, err)
}