package com.ruoyi.order;
|
|
import com.ruoyi.order.service.order.OrderService;
|
import org.junit.runner.RunWith;
|
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
|
|
import javax.annotation.Resource;
|
|
/**
|
* @ClassName orderTest
|
* @Description TODO
|
* @Author jqs
|
* @Date 2023/8/18 11:12
|
* @Version 1.0
|
*/
|
@RunWith(SpringJUnit4ClassRunner.class)
|
@SpringBootTest(classes = RuoYiOrderApplication.class)
|
public class orderTest {
|
|
|
@Resource
|
private OrderService orderService;
|
|
/*@Test
|
public void main() {
|
MgtBasePlatformDto mgtBasePlatformDto = new MgtBasePlatformDto();
|
orderService.getPlTotalOrderTotal(mgtBasePlatformDto);
|
|
}*/
|
|
|
}
|