package com.ruoyi.productionPlan.service;
|
|
import com.ruoyi.productionPlan.service.impl.ProdDemandService;
|
import org.junit.jupiter.api.Test;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.boot.test.context.SpringBootTest;
|
|
/**
|
* <br>
|
*
|
* </br>
|
*
|
* @author deslrey
|
* @version 1.0
|
* @since 2026/03/10 9:15
|
*/
|
@SpringBootTest
|
class ProdDemandServiceTest {
|
|
@Autowired
|
private ProdDemandService prodDemandService;
|
|
@Test
|
void loadProdDemandData() {
|
prodDemandService.LoadProdDemandData(1, 1);
|
}
|
}
|