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

import (
	"git.hilo.cn/hilo-common/domain"
	"hilo-group/domain/model/groupPower_m"
	"testing"
)

func TestGetAllGroupPowerOwner(t *testing.T) {
	owners, err := groupPower_m.GetAllGroupPowerOwners(domain.CreateModelNil())
	println(owners, err)
}