You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudnote_server/src/test/java/com/bupt/note/MyTest.java

11 lines
186 B

package com.bupt.note;
import org.junit.jupiter.api.Test;
public class MyTest {
@Test
public void test1() {
System.out.println(String.format("%d=%d", 1, 1L));
}
}