From 40f41b288902511d42639cdb7bb71ae8d494e20e Mon Sep 17 00:00:00 2001 From: Leonhardt92 Date: Sun, 22 Jul 2018 13:43:12 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=E6=B5=8B=E8=AF=95=E7=94=A8?= =?UTF-8?q?=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../dept/service/DeptServiceImplTest.java | 106 ++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 src/test/java/com/ruoyi/project/system/dept/service/DeptServiceImplTest.java diff --git a/src/test/java/com/ruoyi/project/system/dept/service/DeptServiceImplTest.java b/src/test/java/com/ruoyi/project/system/dept/service/DeptServiceImplTest.java new file mode 100644 index 00000000..eaad4c98 --- /dev/null +++ b/src/test/java/com/ruoyi/project/system/dept/service/DeptServiceImplTest.java @@ -0,0 +1,106 @@ +package com.ruoyi.project.system.dept.service; + +import org.junit.After; +import org.junit.Before; +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; + +/** + * DeptServiceImpl Tester. + * + * @author Leonhardt + * @version 1.0 + * @since 07/22/2018 + */ +@RunWith(SpringJUnit4ClassRunner.class) +@SpringBootTest +public class DeptServiceImplTest { + @Autowired + private IDeptService deptService; + + @Before + public void before() throws Exception { + } + + @After + public void after() throws Exception { + } + + /** + * Method: selectDeptList(Dept dept) + */ + @Test + public void testSelectDeptList() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: selectDeptAll() + */ + @Test + public void testSelectDeptAll() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: selectDeptTree() + */ + @Test + public void testSelectDeptTree() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: selectDeptCount(Long parentId) + */ + @Test + public void testSelectDeptCount() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: checkDeptExistUser(Long deptId) + */ + @Test + public void testCheckDeptExistUser() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: deleteDeptById(Long deptId) + */ + @Test + public void testDeleteDeptById() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: saveDept(Dept dept) + */ + @Test + public void testSaveDept() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: selectDeptById(Long deptId) + */ + @Test + public void testSelectDeptById() throws Exception { + //TODO: Test goes here... + } + + /** + * Method: checkDeptNameUnique(Dept dept) + */ + @Test + public void testCheckDeptNameUnique() throws Exception { + //TODO: Test goes here... + } + + +}