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;
|
private StudentMapper studentMapper;
|
|
@Test
|
void testGetOrderList() {
|
// 测试获取订单列表的方法
|
//System.out.println(iOrderService.getById(2));
|
System.out.println(studentMapper.getStudentTeacher());
|
}
|
}
|