File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/test/java/com/bandwidth/sdk/unit/api Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 66import com .bandwidth .sdk .Configuration ;
77import com .bandwidth .sdk .api .MultiChannelApi ;
88import com .bandwidth .sdk .auth .HttpBasicAuth ;
9+ import com .bandwidth .sdk .model .CreateMultiChannelMessageResponse ;
910import com .bandwidth .sdk .model .MultiChannelChannelListObject ;
1011import com .bandwidth .sdk .model .MultiChannelChannelListObjectContent ;
1112import com .bandwidth .sdk .model .MultiChannelMessageChannelEnum ;
2122
2223import static com .bandwidth .sdk .utils .TestingEnvironmentVariables .*;
2324import static org .hamcrest .MatcherAssert .assertThat ;
24- import static org .hamcrest .CoreMatchers .instanceOf ;
2525import static org .hamcrest .CoreMatchers .is ;
2626
2727public class MultiChannelApiTest {
@@ -53,7 +53,7 @@ public void createMultiChannelMessageTest() throws ApiException {
5353
5454 multiChannelMessageRequest .addChannelListItem (channelListObject );
5555
56- ApiResponse response =
56+ ApiResponse < CreateMultiChannelMessageResponse > response =
5757 api .createMultiChannelMessageWithHttpInfo (BW_ACCOUNT_ID , multiChannelMessageRequest );
5858 assertThat (response .getStatusCode (), is (202 ));
5959 }
Original file line number Diff line number Diff line change 1313package com .bandwidth .sdk .unit .api ;
1414
1515import org .junit .jupiter .api .BeforeAll ;
16- import org .junit .jupiter .api .Disabled ;
1716import org .junit .jupiter .api .Test ;
1817
1918import com .bandwidth .sdk .ApiClient ;
You can’t perform that action at this time.
0 commit comments