2
0

feat: rename directory wfc-modules-user to wfc-user

This commit is contained in:
zhangsz
2024-12-30 10:03:24 +08:00
parent b79f2a441a
commit dd0404b6a6
151 changed files with 26 additions and 19 deletions

View File

@@ -0,0 +1,23 @@
package org.wfc.user;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.wfc.user.service.IUCdrService;
/**
* @description: 设备单元测试
* @author: cyc
* @since: 2024-12-09
*/
@SpringBootTest
public class UClientTest {
@Autowired
private IUCdrService cdrService;
@Test
public void test() {
cdrService.addCdrInfoByOmadaApi();
}
}