feat: rename directory wfc-modules-user to wfc-user
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user