2025-09-15 15:48:54 +08:00
|
|
|
package com.cdzy.operations;
|
2025-09-15 10:36:01 +08:00
|
|
|
|
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
|
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
|
|
2025-11-17 16:00:56 +08:00
|
|
|
import java.io.IOException;
|
|
|
|
|
|
2025-09-15 10:36:01 +08:00
|
|
|
@SpringBootTest
|
|
|
|
|
class EbikeOperationsApplicationTests {
|
|
|
|
|
|
2025-10-15 10:47:08 +08:00
|
|
|
|
2025-09-15 10:36:01 +08:00
|
|
|
@Test
|
2025-11-17 16:00:56 +08:00
|
|
|
void contextLoads() throws IOException {
|
|
|
|
|
System.out.println("http://47.109.141.125:9000/operations-objects/test/gps_bass.bin".getBytes().length);
|
2025-09-15 10:36:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|