14 lines
215 B
Java
14 lines
215 B
Java
package com.example.demo;
|
|
|
|
import org.junit.jupiter.api.Test;
|
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
|
|
@SpringBootTest
|
|
class DemoApplicationTests {
|
|
|
|
@Test
|
|
void contextLoads() {
|
|
}
|
|
|
|
}
|