File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/test/java/com/outfitlab/project/domain/useCases/subscription Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 66import org .junit .jupiter .api .extension .ExtendWith ;
77import org .mockito .junit .jupiter .MockitoExtension ;
88import java .math .BigDecimal ;
9+
910import static org .junit .jupiter .api .Assertions .*;
1011
1112@ ExtendWith (MockitoExtension .class )
1213public class CreateMercadoPagoPreferenceTest {
1314
1415 private CreateMercadoPagoPreference createPreferenceUseCase ;
15-
16- private static final String PLAN_ID = "premium-demo-1" ;
17- private static final String USER_EMAIL =
"[email protected] " ;
18- private static final BigDecimal VALID_PRICE = new BigDecimal ("25000.00" );
19- private static final String CURRENCY = "ARS" ;
20- private static final String WEBHOOK_URL = "http://localhost:8080" ;
21- private static final String FRONTEND_URL = "http://localhost:5173" ;
16+ private final String PLAN_ID = "premium-demo-1" ;
17+ private final String USER_EMAIL =
"[email protected] " ;
18+ private final BigDecimal VALID_PRICE = new BigDecimal ("25000.00" );
19+ private final String CURRENCY = "ARS" ;
20+ private final String WEBHOOK_URL = "http://localhost:8080" ;
21+ private final String FRONTEND_URL = "http://localhost:5173" ;
2222
2323 @ BeforeEach
2424 void setUp () {
You can’t perform that action at this time.
0 commit comments