We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 013272f commit 6e1a721Copy full SHA for 6e1a721
payments-api/src/test/java/com/intuit/payment/services/CardServiceTest.java
@@ -47,6 +47,12 @@ public void testgetAllCardCountCustomerBlank() throws BaseException {
47
cardService.getAllCards("", 0);
48
}
49
50
+ @Test(expectedExceptions = IllegalArgumentException.class)
51
+ public void testgetAllCardCountCustomerNull() throws BaseException {
52
+ CardService cardService = new CardService();
53
+ cardService.getAllCards(null, 0);
54
+ }
55
+
56
@Test(expectedExceptions = IllegalArgumentException.class)
57
public void testcreateFromTokenCustomerBlank() throws BaseException {
58
CardService cardService = new CardService();
0 commit comments