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

import org.springframework.boot.SpringApplication;

public class TestPaymentServiceApplication {

    public static void main(String[] args) {
        SpringApplication.from(PaymentServiceApplication::main).with(TestcontainersConfiguration.class).run(args);
    }

}