-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
36 additions
and
7 deletions.
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
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
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
16 changes: 16 additions & 0 deletions
16
UnitTests/BraintreePayPalNativeCheckoutTests/BTPayPalCheckoutMock.h
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,16 @@ | ||
// | ||
// BTPayPalCheckoutMock.h | ||
// BraintreePayPalNativeCheckout | ||
// | ||
// Created by Samantha Cannillo on 10/6/23. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
NS_ASSUME_NONNULL_BEGIN | ||
|
||
@interface BTPayPalCheckoutMock : NSObject | ||
|
||
@end | ||
|
||
NS_ASSUME_NONNULL_END |
12 changes: 12 additions & 0 deletions
12
UnitTests/BraintreePayPalNativeCheckoutTests/BTPayPalCheckoutMock.m
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,12 @@ | ||
// | ||
// BTPayPalCheckoutMock.m | ||
// BraintreePayPalNativeCheckout | ||
// | ||
// Created by Samantha Cannillo on 10/6/23. | ||
// | ||
|
||
#import "BTPayPalCheckoutMock.h" | ||
|
||
@implementation BTPayPalCheckoutMock | ||
|
||
@end |
1 change: 1 addition & 0 deletions
1
...s/BraintreePayPalNativeCheckoutTests/BraintreePayPalNativeCheckoutTests-Bridging-Header.h
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 @@ | ||
#import "BTPayPalCheckoutMock.h" |