新增征信维护对象与依赖骨架
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.ruoyi.info.collection.service;
|
||||
|
||||
import com.ruoyi.info.collection.domain.dto.CcdiCreditInfoQueryDTO;
|
||||
import com.ruoyi.info.collection.domain.vo.CreditInfoUploadResultVO;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertNotNull;
|
||||
|
||||
class CcdiCreditInfoServiceImplTest {
|
||||
|
||||
@Test
|
||||
void shouldCompileCreditInfoContracts() {
|
||||
CcdiCreditInfoQueryDTO queryDTO = new CcdiCreditInfoQueryDTO();
|
||||
CreditInfoUploadResultVO resultVO = new CreditInfoUploadResultVO();
|
||||
assertNotNull(queryDTO);
|
||||
assertNotNull(resultVO);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user