BaseStudentAssessmentInspectionServiceImplTest.java 795 B

12345678910111213141516171819202122
  1. package com.xjrsoft.module.student.service.impl;
  2. import com.aliyun.dingtalkchengfeng_1_0.models.CfOrgResp;
  3. import com.xjrsoft.module.room.service.IWfRoomApplicantService;
  4. import com.xjrsoft.module.student.service.IBaseStudentAssessmentInspectionService;
  5. import org.junit.jupiter.api.Test;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.boot.test.context.SpringBootTest;
  8. import static org.junit.jupiter.api.Assertions.*;
  9. @SpringBootTest
  10. class BaseStudentAssessmentInspectionServiceImplTest {
  11. @Autowired
  12. private IBaseStudentAssessmentInspectionService baseStudentAssessmentInspectionService;
  13. @Test
  14. void dataHandle() {
  15. for(long i=7; i<13; i++){
  16. baseStudentAssessmentInspectionService.dataHandle(i);
  17. }
  18. }
  19. }