WfMeetingApplyServiceImplTest.java 638 B

123456789101112131415161718192021
  1. package com.xjrsoft.module.oa.service.impl;
  2. import com.xjrsoft.module.oa.service.IOfficialDocumentReceivedService;
  3. import com.xjrsoft.module.oa.service.IWfMeetingApplyService;
  4. import org.junit.jupiter.api.Test;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.boot.test.context.SpringBootTest;
  7. import static org.junit.jupiter.api.Assertions.*;
  8. @SpringBootTest
  9. class WfMeetingApplyServiceImplTest {
  10. @Autowired
  11. private IWfMeetingApplyService wfMeetingApplyService;
  12. @Test
  13. void noticeParticipants() {
  14. wfMeetingApplyService.noticeParticipants(1905133329842712576L);
  15. }
  16. }