Commit 2fae8e2d by fsn

字典的测试完成

parent f759fbae
package com.stylefeng.guns.system; package com.stylefeng.guns.system;
import com.stylefeng.guns.base.BaseTest; import com.stylefeng.guns.base.BaseTest;
import com.stylefeng.guns.modular.system.dao.DictDao;
import com.stylefeng.guns.modular.system.service.IDictService; import com.stylefeng.guns.modular.system.service.IDictService;
import org.junit.Assert;
import org.junit.Test; import org.junit.Test;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.List;
import java.util.Map;
/** /**
* 字典服务测试 * 字典服务测试
...@@ -12,18 +16,34 @@ import javax.annotation.Resource; ...@@ -12,18 +16,34 @@ import javax.annotation.Resource;
* @author fengshuonan * @author fengshuonan
* @date 2017-04-27 17:05 * @date 2017-04-27 17:05
*/ */
public class DictTest extends BaseTest{ public class DictTest extends BaseTest {
@Resource @Resource
IDictService dictService; IDictService dictService;
@Resource
DictDao dictDao;
@Test @Test
public void addTest() { public void addTest() {
dictService.addDict("测试123123123","1:冻结;2:jiedong;3:接触"); String dictName = "这是一个字典测试";
String dictValues = "1:测试1;2:测试2";
dictService.addDict(dictName, dictValues);
} }
@Test @Test
public void editTest() { public void editTest() {
dictService.editDict(1,"测试",""); dictService.editDict(16, "测试", "1:测试1;2:测试2");
}
@Test
public void deleteTest() {
this.dictService.delteDict(16);
}
@Test
public void listTest() {
List<Map<String, Object>> list = this.dictDao.list("性别");
Assert.assertTrue(list.size() > 0);
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment