package com.xjrsoft.module.oa.service.impl; import com.xjrsoft.module.oa.service.IOfficialDocumentReceivedService; 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 OfficialDocumentReceivedServiceImplTest { @Autowired private IOfficialDocumentReceivedService officialDocumentReceivedService; @Test void dataHandle() { officialDocumentReceivedService.dataHandle(1742764908022394880L); } }