package com.kwan.springbootkwan.controller; import com.kwan.springbootkwan.SpringBootKwanApplication; import org.junit.jupiter.api.Test; import org.junit.runner.RunWith; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringRunner; @RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) @ContextConfiguration(classes = SpringBootKwanApplication.class) class ChatbotControllerTest { @Test void selectAll() { } @Test void testSelectAll() { } @Test void selectOne() { } @Test void insert() { } @Test void update() { } @Test void delete() { } @Test void testDelete() { } }