mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-20 10:38:12 +08:00
17 lines
396 B
Plaintext
17 lines
396 B
Plaintext
![]() |
package com.example
|
||
|
|
||
|
import org.junit.Test
|
||
|
import org.junit.runner.RunWith
|
||
|
import org.springframework.boot.test.SpringApplicationConfiguration
|
||
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner
|
||
|
|
||
|
@RunWith(SpringJUnit4ClassRunner::class)
|
||
|
@SpringApplicationConfiguration(classes = arrayOf(DemoApplication::class))
|
||
|
class DemoApplicationTests {
|
||
|
|
||
|
@Test
|
||
|
fun contextLoads() {
|
||
|
}
|
||
|
|
||
|
}
|