1234567891011121314151617181920212223242526 |
- package com.malk.kaiyue;
- import com.malk.kaiyue.service.KYCDService;
- import lombok.extern.slf4j.Slf4j;
- import org.junit.runner.RunWith;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- import org.springframework.test.context.junit4.SpringRunner;
- import java.util.List;
- import java.util.Map;
- @Slf4j
- @SpringBootTest
- @RunWith(SpringRunner.class)
- public class Test {
- @Autowired
- private KYCDService kycdService;
- @org.junit.Test
- public void test(){
- List<Map> empLeaveList = kycdService.getEmpLeaveList();
- log.info("empLeaveList:{}",empLeaveList);
- }
- }
|