19 lines
398 B
Java
19 lines
398 B
Java
package com.example.springdemo;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
@SpringBootTest
|
|
public class SpringDemoApplicationTests {
|
|
@Test
|
|
void test(String[] args) {
|
|
SpringApplication.run(SpringDemoApplication.class, args);
|
|
}
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
|
|
}
|
|
}
|