saveourtool / app-cloud-template

App cloud template on Gradle and Spring Boot
MIT License
0 stars 0 forks source link

Add simple tests for Spring #14

Closed orchestr7 closed 3 months ago

orchestr7 commented 3 months ago
import org.junit.jupiter.api.Test
import org.springframework.boot.test.context.SpringBootTest

@SpringBootTest
class MyAppTest {
    @Test
    fun contextLoads() {
    }
}