ebike-plus/ebike-operations/src/test/java/com/cdzy/operations/EbikeOperationsApplicationTests.java

18 lines
455 B
Java
Raw Normal View History

2025-09-15 15:48:54 +08:00
package com.cdzy.operations;
2025-09-15 10:36:01 +08:00
2025-11-03 11:30:59 +08:00
import com.cdzy.operations.utils.CommandUtil;
import com.fasterxml.jackson.core.JsonProcessingException;
2025-09-15 10:36:01 +08:00
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class EbikeOperationsApplicationTests {
2025-09-15 10:36:01 +08:00
@Test
2025-11-03 11:30:59 +08:00
void contextLoads() throws JsonProcessingException {
System.out.println(CommandUtil.guang_he_tong("2370171956","2370171956","LOCK"));
2025-09-15 10:36:01 +08:00
}
}