rpc_test.go 284 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13
package test

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

func TestMGetGroupPower(t *testing.T) {
	res, err := rpc.MGetGroupPower(domain.CreateModelNil(), []mysql.ID{250, 251})
	println(res, err)
}