14 lines
218 B
Java
14 lines
218 B
Java
![]() |
package com.example.springdemo;
|
||
|
|
||
|
import org.junit.jupiter.api.Test;
|
||
|
import org.springframework.boot.test.context.SpringBootTest;
|
||
|
|
||
|
@SpringBootTest
|
||
|
class SpringDemoApplicationTests {
|
||
|
|
||
|
@Test
|
||
|
void contextLoads() {
|
||
|
}
|
||
|
|
||
|
}
|