CCKS2020Data/Test.java

18 lines
354 B
Java
Raw Normal View History

2021-06-15 08:58:28 +08:00
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() {
}
}