Package org.springside.examples.miniservice.ws.result

Examples of org.springside.examples.miniservice.ws.result.WSResult


   * 测试参数错误时的返回码.
   */
  @Test
  public void validateParamter() {
    control.replay();
    WSResult result = userWebService.createUser(null);
    assertEquals(WSResult.PARAMETER_ERROR, result.getCode());
  }
View Full Code Here

TOP

Related Classes of org.springside.examples.miniservice.ws.result.WSResult

Copyright © 2018 www.massapicom. 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.