puzhibing
2023-12-13 af6d43a41205f8c7fc1a965cb019c039063bf4f0
DriverIGOTravel/guns-admin/src/test/java/com/stylefeng/guns/GunsApplicationTest.java
@@ -1,31 +1,31 @@
package com.stylefeng.guns;
import com.stylefeng.guns.modular.system.service.IOrderEvaluateService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
import java.util.Map;
/**
 * @author zhibing.pu
 * @Date 2023/12/5 11:22
 */
@RunWith(SpringRunner.class)
@SpringBootTest
public class GunsApplicationTest {
    @Autowired
    private IOrderEvaluateService orderEvaluateService;
    @Test
    public void test(){
        try {
            Map<String, Object> map = orderEvaluateService.queryEvaluate(3, 1, 10, 2508);
        }catch (Exception e){
            e.printStackTrace();
        }
    }
}
//package com.stylefeng.guns;
//
//import com.stylefeng.guns.modular.system.service.IOrderEvaluateService;
//import org.junit.Test;
//import org.junit.runner.RunWith;
//import org.springframework.beans.factory.annotation.Autowired;
//import org.springframework.boot.test.context.SpringBootTest;
//import org.springframework.test.context.junit4.SpringRunner;
//
//import java.util.Map;
//
///**
// * @author zhibing.pu
// * @Date 2023/12/5 11:22
// */
//@RunWith(SpringRunner.class)
//@SpringBootTest
//public class GunsApplicationTest {
//
//    @Autowired
//    private IOrderEvaluateService orderEvaluateService;
//
//    @Test
//    public void test(){
//        try {
//            Map<String, Object> map = orderEvaluateService.queryEvaluate(3, 1, 10, 2508);
//        }catch (Exception e){
//            e.printStackTrace();
//        }
//    }
//}