27 lines
600 B
Java
27 lines
600 B
Java
package com.evotech.hd.cloud;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
import com.evotech.hd.cloud.service.rpc.ResourceService;
|
|
import com.evotech.hd.cloud.utils.components.HDStepDictComponent;
|
|
import jakarta.annotation.Resource;
|
|
|
|
@SpringBootTest
|
|
class CloudManageServerApplicationTests {
|
|
|
|
@Resource
|
|
private HDStepDictComponent hdStepDictComponent;
|
|
@Resource
|
|
private ResourceService resourceService;
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
for (int i = 1; i < 9; i++) {
|
|
System.out.println(hdStepDictComponent.hdStepDictName(i));
|
|
}
|
|
|
|
}
|
|
|
|
}
|