guoyujie
2025-08-11 a12834e87a110fbf1414e24eb574f2e87b29e03c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.example.erp;
 
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
 
@SpringBootTest
class ErpApplicationTests {
 
    @Test
    void contextLoads() {
        String.valueOf("1.0").replaceAll("\\.0*$|(\\.\\d*?)0+$", "$1");
    }
 
    @Test
    void test() {
 
    }
 
}