12345678910111213141516171819202122232425262728 |
- package com.jiayue.ipfcst.fileupload.service;
- import com.jiayue.ipfcst.BaseTest;
- import org.junit.Test;
- import org.springframework.beans.factory.annotation.Autowired;
- import javax.xml.ws.Action;
- import java.util.Date;
- import static org.junit.jupiter.api.Assertions.*;
- /**
- * 文件生成测试类
- *
- * @author xsl
- * @version 3.0
- */
- public class E63UploadFileServiceTest extends BaseTest {
- @Autowired
- E63UploadFileService e63UploadFileService;
- @Test
- public void testCreateFile() throws Exception{
- Thread.sleep(60000L);
- e63UploadFileService.generateE27File(new Date());
- }
- }
|