XiaoRuby
2023-08-03 fbba4ea24430b14eee18b190b7e08f1a58a8e504
sys/src/test/java/com/yuanchu/limslaboratory/SysApplicationTests.java
@@ -1,6 +1,5 @@
package com.yuanchu.limslaboratory;
import com.yuanchu.limslaboratory.utils.MyUtils;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@@ -9,8 +8,9 @@
    @Test
    void contextLoads() {
        String number = MyUtils.getNumber(6);
        System.out.println(number);
        String newString = String.format("%06d", 77);
        System.out.println("newString === " + newString);
    }
}