package com.imprimelibros.erp.cart; import java.util.Locale; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; @SpringBootTest public class envioCarroTest { @Autowired CartService cartService; private final Long carritoId = 64L; @Test void addPedido(){ Locale locale = Locale.forLanguageTag("es-ES"); cartService.crearPedido(carritoId, locale); } }