This commit is contained in:
lizan404 2021-06-15 08:58:28 +08:00
parent d308c209ee
commit db8266193e
1 changed files with 17 additions and 0 deletions

17
Test.java Normal file
View File

@ -0,0 +1,17 @@
package com.example.demo;
//testing add
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
@RunWith(SpringRunner.class)
@SpringBootTest
public class DemoApplicationTests {
@Test
public void contextLoads() {
}
}