package com.example.erp.service;
|
|
import org.junit.jupiter.api.Test;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
@SpringBootTest
|
class IOrderServiceTest {
|
@Autowired
|
private IOrderService iOrderService;
|
|
@Test
|
void testGetOrderList() {
|
// 测试获取订单列表的方法
|
}
|
}
|