廖井涛
2025-12-12 2f44fc75c78e9291f07a0864199235cde689fa8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.example.erp.service.sd;
 
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
 
@SpringBootTest
class BasicDataServiceTest {
    @Autowired
    private BasicDataService basicDataService;
    @Test
    void  getOrderBasicData() {
        basicDataService.getOrderBasicData();
    }
}