mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-19 18:22:26 +08:00
18 lines
313 B
Plaintext
18 lines
313 B
Plaintext
package com.example.demo
|
|
|
|
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
|
|
class DemoApplicationTests {
|
|
|
|
@Test
|
|
fun contextLoads() {
|
|
}
|
|
|
|
}
|
|
|