13 lines
202 B
Kotlin
13 lines
202 B
Kotlin
package com.example.demo
|
|
|
|
import org.junit.jupiter.api.Test
|
|
import org.springframework.boot.test.context.SpringBootTest
|
|
|
|
@SpringBootTest
|
|
class DemoApplicationTests {
|
|
|
|
@Test
|
|
fun contextLoads() {
|
|
}
|
|
|
|
}
|