-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DEV-30004 adds refund v2 and threeds auth v2 response signature
- Loading branch information
Abdurrahman Basgoynuk
committed
Dec 19, 2024
1 parent
5ec40bd
commit 81ea57e
Showing
2 changed files
with
18 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/test/java/com/iyzipay/functional/StandardBaseTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"); | ||
} | ||
} |