Files
initializr/initializr-generator/src/test/resources/project/kotlin/standard/DemoApplicationTests.kt.gen
Stephane Nicoll fc7cc42d62 Polish code format
2018-12-10 15:02:22 +01:00

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() {
}
}