Package org.hamster.weixinmp.test.service

Source Code of org.hamster.weixinmp.test.service.WxUserServiceTest

/**
*
*/
package org.hamster.weixinmp.test.service;

import org.hamster.weixinmp.exception.WxException;
import org.hamster.weixinmp.model.user.WxUserGetJson;
import org.hamster.weixinmp.service.WxAuthService;
import org.hamster.weixinmp.service.WxUserService;
import org.hamster.weixinmp.test.base.AbstractWxServiceTest;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;

/**
* @author grossopaforever@gmail.com
* @version Jan 4, 2014
*
*/
public class WxUserServiceTest extends AbstractWxServiceTest {

  @Autowired
  WxAuthService authService;
  @Autowired
  WxUserService userService;
 
  @Test
  public void testAll() throws WxException {
    WxUserGetJson userGet = userService.remoteUserGet(accessToken);
    System.out.println(userGet);
  }
}
TOP

Related Classes of org.hamster.weixinmp.test.service.WxUserServiceTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.