zoukankan      html  css  js  c++  java
  • zTree实现地市县三级级联Service接口測试

    zTree实现地市县三级级联Service接口測试


    ProvinceServiceTest.java:

    /**
     * @Title:ProvinceServiceTest.java
     * @Package:com.gwtjs.service
     * @Description:TODO
     * @author:Youhaidong(游海东)
     * @date:2014-5-11 上午12:24:09
     * @version V1.0
     */
    package com.gwtjs.service;
    
    import static org.junit.Assert.assertNotNull;
    import static org.junit.Assert.assertTrue;
    
    import java.util.ArrayList;
    import java.util.List;
    
    import org.junit.Test;
    import org.springframework.beans.factory.annotation.Autowired;
    
    import com.gwtjs.SpringTestBase;
    import com.gwtjs.model.Province;
    
    /**
     * 类功能说明
     * 类改动者 改动日期
     * 改动说明
     * <p>Title:ProvinceServiceTest.java</p>
     * <p>Description:游海东个人开发</p>
     * <p>Copyright:Copyright(c)2013</p>
     * @author:游海东
     * @date:2014-5-11 上午12:24:09
     * @version V1.0
     */
    public class ProvinceServiceTest extends SpringTestBase 
    {
    	@Autowired
    	private ProvinceService provinceService;
    	
    	/**
    	 * @author YouHaidong
    	 * @date 2014-05-10
    	 * @description 測试ProvinceService非空
    	 */
    	@Test
    	@Override
    	public void testNotNull()
    	{
    		assertNotNull(provinceService);
    		assertTrue(null != provinceService);
    	}
    	
    	/**
    	 * @author YouHaidong
    	 * @date 2014-05-10
    	 * @description 測试testFindArea
    	 */
    	@Test
    	public void testFindArea()
    	{
    		String provinceCode = "";
    		String cityCode = "";
    		String countyCode = "";
    		List<Province> list = new ArrayList<Province>();
    		list = provinceService.findArea(provinceCode, cityCode, countyCode);
    		System.out.println("Service測试查询出的数据的条数:" + list.size());
    	}
    }
    


  • 相关阅读:
    pkg_resources.DistributionNotFound: The 'catkin-pkg==0.4.9' distribution was not found
    gsl库安装
    json ubuntu下安装
    系统安装情况以及深度学习环境搭建
    ros 编程习惯
    ubuntu系统ftp连接 以及ssh连接
    redmine问题
    maven仓库私服配置
    SVN配置管理(trunk、branches、tags)
    Gitolite配置管理和GIT基本操作
  • 原文地址:https://www.cnblogs.com/mfrbuaa/p/3959438.html
Copyright © 2011-2022 走看看