Skip to content

Commit

Permalink
Adds API Test for jwsRepresentation in obj-c (#4526)
Browse files Browse the repository at this point in the history
* added an API test for the JWSRepresntation object for objective C

* added nullable modifier
  • Loading branch information
aboedo authored Dec 2, 2024
1 parent 24c6ea2 commit 6d4cdf9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ + (void)checkAPI {
NSString *rci = rct.transactionIdentifier;
NSString *pid = rct.productIdentifier;
NSDate *date = rct.purchaseDate;
NSLog(rct, rci, pid, date);
NSString * _Nullable jws = rct.jwsRepresentation;
NSLog(rct, rci, pid, date, jws);
}

@end

0 comments on commit 6d4cdf9

Please sign in to comment.