12345678910111213141516171819202122232425262728293031323334 |
- package service
- import (
- "bp.jydev.jianyu360.cn/SocialPlatform/messageCenter/rpc/messagecenter/messagecenter"
- "testing"
- )
- func TestChatGroupService_EntPersonsList(t *testing.T) {
- type args struct {
- param *messagecenter.EntPersonsListReq
- }
- tests := []struct {
- name string
- args args
- }{
- // TODO: Add test cases.
- {
- name: "企业列表",
- args: args{
- &messagecenter.EntPersonsListReq{
- EntId: 14929,
- Name: "",
- GroupId: 0,
- },
- },
- },
- }
- for _, tt := range tests {
- t.Run(tt.name, func(t *testing.T) {
- b := ChatGroupService{}
- b.EntPersonsList(tt.args.param)
- })
- }
- }
|