Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/test/BaseSetup.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import okhttp3.OkHttpClient;
import org.junit.jupiter.api.BeforeEach;

public class BaseSetup extends BaseWireMockTest {
class BaseSetup extends BaseWireMockTest {

protected StandardCheckoutClient standardCheckoutClient;

Expand Down
2 changes: 1 addition & 1 deletion src/test/BaseSetupWithOAuth.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import wiremock.org.apache.http.HttpStatus;

// Cannot mock TokenService as it is getting created inside the StandardCheckoutClient
public class BaseSetupWithOAuth extends BaseSetup {
class BaseSetupWithOAuth extends BaseSetup {

OAuthResponse oAuthResponse;

Expand Down
2 changes: 1 addition & 1 deletion src/test/CallbackTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class CallbackTest extends BaseSetup {
class CallbackTest extends BaseSetup {

@Test
void test_ENTIRE_PG_ORDER_COMPLETED() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/CancelSubscriptionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class CancelSubscriptionTest extends BaseSetupWithOAuth {
class CancelSubscriptionTest extends BaseSetupWithOAuth {

@Test
void testCancelSubscription() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/CreateOrderTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class CreateOrderTest extends BaseSetupWithOAuth {
class CreateOrderTest extends BaseSetupWithOAuth {

@Test
void testCreateOrder() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/EventPublisherTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class EventPublisherTest extends BaseSetupWithOAuth {
class EventPublisherTest extends BaseSetupWithOAuth {

private EventPublisher eventPublisher;
private EventQueue eventQueue;
Expand Down
2 changes: 1 addition & 1 deletion src/test/ExceptionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class ExceptionTest extends BaseSetupWithOAuth {
class ExceptionTest extends BaseSetupWithOAuth {

@Test
void testR999() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/HttpCommandTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class HttpCommandTest extends BaseSetup {
class HttpCommandTest extends BaseSetup {

@Test
public void testHttpCommand200() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/OrderStatusTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class OrderStatusTest extends BaseSetupWithOAuth {
class OrderStatusTest extends BaseSetupWithOAuth {

@Test
void orderStatusReturnSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/PayTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class PayTest extends BaseSetupWithOAuth {
class PayTest extends BaseSetupWithOAuth {

@SneakyThrows
@Test
Expand Down
2 changes: 1 addition & 1 deletion src/test/RefundTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class RefundTest extends BaseSetupWithOAuth {
class RefundTest extends BaseSetupWithOAuth {

@Test
void testRefundSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/SingletonCustomCheckoutTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SingletonCustomCheckoutTest extends BaseSetup {
class SingletonCustomCheckoutTest extends BaseSetup {

FormBody formBody =
new FormBody.Builder()
Expand Down
2 changes: 1 addition & 1 deletion src/test/SingletonEventPublisherTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class SingletonEventPublisherTest {
class SingletonEventPublisherTest {

@Test
void testEventPublisherWithDifferentClients() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/SingletonStandardCheckoutTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SingletonStandardCheckoutTest extends BaseSetup {
class SingletonStandardCheckoutTest extends BaseSetup {

FormBody formBody =
new FormBody.Builder()
Expand Down
2 changes: 1 addition & 1 deletion src/test/SingletonTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SingletonTest extends BaseSetupWithOAuth {
class SingletonTest extends BaseSetupWithOAuth {

@Test
void testSingletonViaGetInstance() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/SubscriptionNotifyTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SubscriptionNotifyTest extends BaseSetupWithOAuth {
class SubscriptionNotifyTest extends BaseSetupWithOAuth {

@Test
void testNotifySuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/SubscriptionRedeemTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SubscriptionRedeemTest extends BaseSetupWithOAuth {
class SubscriptionRedeemTest extends BaseSetupWithOAuth {

@Test
void testRedeemSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/SubscriptionSetupTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SubscriptionSetupTest extends BaseSetupWithOAuth {
class SubscriptionSetupTest extends BaseSetupWithOAuth {

@Test
void testSetupViaUpiIntentSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/SubscriptionStatusResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class SubscriptionStatusResponse extends BaseSetupWithOAuth {
class SubscriptionStatusResponse extends BaseSetupWithOAuth {

@Test
void testSubscriptionStatusSuccess() {
Expand Down
2 changes: 1 addition & 1 deletion src/test/TokenServiceTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class TokenServiceTest extends BaseSetup {
class TokenServiceTest extends BaseSetup {

protected String formDataToString(FormBody formBody) {
StringBuilder builder = new StringBuilder();
Expand Down
2 changes: 1 addition & 1 deletion src/test/TransactionTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.junit.jupiter.api.Test;
import wiremock.org.apache.http.HttpStatus;

public class TransactionTest extends BaseSetupWithOAuth {
class TransactionTest extends BaseSetupWithOAuth {

String transactionId = "transactionId";

Expand Down
2 changes: 1 addition & 1 deletion src/test/UtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test;

public class UtilTest {
class UtilTest {

@Test
void testSha256SuccessFor5Parameters() {
Expand Down
Loading