@@ -29,7 +29,7 @@ public void prepClient() {
2929 }
3030
3131 @ Test
32- public void testCreate () throws IOException , TwikeyClient .UserException , InterruptedException {
32+ public void testCreate () throws IOException , TwikeyClient .UserException {
3333 Assume .assumeNotNull (apiKey ,mandateNumber );
3434 TransactionRequests .NewTransactionRequest request = new TransactionRequests .NewTransactionRequest (mandateNumber , "hey" , 10.0 );
3535 TransactionResponse .Transaction linkResponse = api .transaction ().create (request );
@@ -51,7 +51,7 @@ public void testCreate() throws IOException, TwikeyClient.UserException, Interru
5151 }
5252
5353 @ Test
54- public void testStatus () throws IOException , TwikeyClient .UserException , InterruptedException {
54+ public void testStatus () throws IOException , TwikeyClient .UserException {
5555 Assume .assumeNotNull (apiKey , mandateNumber );
5656 TransactionRequests .StatusRequest statusRequest = new TransactionRequests .StatusRequest ()
5757 .setMandateNumber (mandateNumber )
@@ -62,7 +62,7 @@ public void testStatus() throws IOException, TwikeyClient.UserException, Interru
6262 }
6363
6464 @ Test
65- public void testAction () throws IOException , TwikeyClient .UserException , InterruptedException {
65+ public void testAction () throws IOException , TwikeyClient .UserException {
6666 Assume .assumeNotNull (apiKey , mandateNumber );
6767 TransactionRequests .NewTransactionRequest request = new TransactionRequests .NewTransactionRequest (mandateNumber , "hey" , 10.0 );
6868 TransactionResponse .Transaction linkResponse = api .transaction ().create (request );
@@ -72,7 +72,7 @@ public void testAction() throws IOException, TwikeyClient.UserException, Interru
7272 }
7373
7474 @ Test
75- public void testUpdate () throws IOException , TwikeyClient .UserException , InterruptedException {
75+ public void testUpdate () throws IOException , TwikeyClient .UserException {
7676 Assume .assumeNotNull (apiKey , mandateNumber );
7777 TransactionRequests .NewTransactionRequest request = new TransactionRequests .NewTransactionRequest (mandateNumber , "hey" , 10.0 );
7878 TransactionResponse .Transaction linkResponse = api .transaction ().create (request );
@@ -82,15 +82,15 @@ public void testUpdate() throws IOException, TwikeyClient.UserException, Interru
8282 }
8383
8484 @ Test
85- public void testRefund () throws IOException , TwikeyClient .UserException , InterruptedException {
85+ public void testRefund () throws IOException , TwikeyClient .UserException {
8686 Assume .assumeNotNull (apiKey , mandateNumber , paidTxId );
8787 TransactionRequests .RefundRequest requestRefund = new TransactionRequests .RefundRequest ("6445226" , "hey" , 10.0 );
8888 TransactionResponse .Refund refundResponse = api .transaction ().refund (requestRefund );
8989 assertNotNull ("Transaction Id" , refundResponse );
9090 }
9191
9292 @ Test
93- public void testRemove () throws IOException , TwikeyClient .UserException , InterruptedException {
93+ public void testRemove () throws IOException , TwikeyClient .UserException {
9494 Assume .assumeNotNull (apiKey , mandateNumber );
9595 TransactionRequests .NewTransactionRequest request = new TransactionRequests .NewTransactionRequest (mandateNumber , "hey" , 10.0 );
9696 TransactionResponse .Transaction linkResponse = api .transaction ().create (request );
@@ -100,15 +100,15 @@ public void testRemove() throws IOException, TwikeyClient.UserException, Interru
100100 }
101101
102102 @ Test
103- public void testQuery () throws IOException , TwikeyClient .UserException , InterruptedException {
103+ public void testQuery () throws IOException , TwikeyClient .UserException {
104104 Assume .assumeNotNull (apiKey , mandateNumber );
105105 TransactionRequests .QueryRequest queryRequest = new TransactionRequests .QueryRequest (6445226 );
106106 List <TransactionResponse .Transaction > response = api .transaction ().query (queryRequest );
107107 assertNotNull ("Transaction" , response );
108108 }
109109
110110 @ Test
111- public void testFeed () throws IOException , TwikeyClient .UserException , InterruptedException {
111+ public void testFeed () throws IOException , TwikeyClient .UserException {
112112 Assume .assumeTrue ("APIKey is set" , apiKey != null );
113113 api .transaction ().feed (updatedTransaction -> {
114114 String state_ = updatedTransaction .getState ();
0 commit comments