cheng
2025-05-08 175af547194d84e9bcc3e80b98951c0c0a541de9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import com.google.common.collect.Maps;
import com.product.common.utils.HttpTest;
import org.junit.Test;
 
import java.util.Map;
 
/**
 * Copyright © 6c
 *
 * @Date: 2022-04-07 15:39
 * @Author: 6c
 * @Description:
 */
public class PatchTest {
    /**
     * 获取详情
     */
    @Test
    public void testListTableInfo(){
        Map<String, Object> m = Maps.newHashMap();
        m.put("url/api", "/api/patch/extract/list-table-info/v1");
        HttpTest.testPost(m);
    }
}