“56b159de95a32ccfc9d7062470c63dc52f1e8341”上不存在“pages/git@gitcode.net:dcloud/hello-uni-app-x.git”
ChatbotControllerTest.java 835 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
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)
12
@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
@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() {
    }
}