| 12345678910111213141516171819202122 |
- package com.xjrsoft.module.student.service.impl;
- import com.aliyun.dingtalkchengfeng_1_0.models.CfOrgResp;
- import com.xjrsoft.module.room.service.IWfRoomApplicantService;
- import com.xjrsoft.module.student.service.IBaseStudentAssessmentInspectionService;
- import org.junit.jupiter.api.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.boot.test.context.SpringBootTest;
- import static org.junit.jupiter.api.Assertions.*;
- @SpringBootTest
- class BaseStudentAssessmentInspectionServiceImplTest {
- @Autowired
- private IBaseStudentAssessmentInspectionService baseStudentAssessmentInspectionService;
- @Test
- void dataHandle() {
- for(long i=7; i<13; i++){
- baseStudentAssessmentInspectionService.dataHandle(i);
- }
- }
- }
|