microservicios-spring / payment-service / src / test / java / edu / unimagdalena / paymentservice / PaymentServiceApplicationTests.java
PaymentServiceApplicationTests.java
Raw
package edu.unimagdalena.paymentservice;

import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.annotation.Import;

@Import(TestcontainersConfiguration.class)
@SpringBootTest
class PaymentServiceApplicationTests {

    @Test
    void contextLoads() {
    }

}