package com.flightfeather.uav
|
|
import org.junit.Test
|
import org.junit.runner.RunWith
|
import org.slf4j.LoggerFactory
|
import org.springframework.boot.test.context.SpringBootTest
|
import org.springframework.test.context.junit4.SpringRunner
|
|
@RunWith(SpringRunner::class)
|
@SpringBootTest
|
class UAVApplicationTests {
|
|
|
@Test
|
fun contextLoads() {
|
}
|
|
@Test
|
fun foo1(): Unit {
|
|
}
|
|
@Test
|
fun logTest() {
|
val log = LoggerFactory.getLogger(javaClass)
|
log.trace("trace")
|
log.debug("debug")
|
log.warn("warn")
|
log.info("info")
|
log.error("error")
|
}
|
|
}
|