Skip to content

Commit

Permalink
DEV-30004 adds refund v2 and threeds auth v2 response signature
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdurrahman Basgoynuk committed Dec 19, 2024
1 parent 5ec40bd commit 81ea57e
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/iyzipay/functional/RefundTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

import static org.junit.Assert.*;

public class RefundTest extends IyziupBaseTest {
public class RefundTest extends StandardBaseTest {

@Test
public void should_refund_payment() {
Expand Down
17 changes: 17 additions & 0 deletions src/test/java/com/iyzipay/functional/StandardBaseTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package com.iyzipay.functional;

import com.iyzipay.Options;
import org.junit.Before;

public abstract class StandardBaseTest {

Options options;

@Before
public void setUp() {
options = new Options();
options.setApiKey("sandbox-qBDJ5ttcxbXNNzLZ02WmkiKtHH3ADONj");
options.setSecretKey("sandbox-HfB5nGM5CRAGdtAijxZ8xHlqYkvN1B0p");
options.setBaseUrl("https://sandbox-api.iyzipay.com");
}
}

0 comments on commit 81ea57e

Please sign in to comment.