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; import java.util.HashMap; import java.util.Map; import static org.junit.jupiter.api.Assertions.*; @SpringBootTest class OrderServiceTest { @Autowired OrderService orderService; @Test void testCreateOrder() { Map order =new HashMap<>(); //orderService.saveOrder(); } }