| 123456789101112131415161718192021 |
- package com.xjrsoft.module.oa.service.impl;
- import com.xjrsoft.module.oa.service.IOfficialDocumentReceivedService;
- import com.xjrsoft.module.oa.service.IWfMeetingApplyService;
- 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 WfMeetingApplyServiceImplTest {
- @Autowired
- private IWfMeetingApplyService wfMeetingApplyService;
- @Test
- void noticeParticipants() {
- wfMeetingApplyService.noticeParticipants(1905133329842712576L);
- }
- }
|