Skip to content

Commit

Permalink
Add Composite Operations to java-coap at Server side in integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed May 4, 2023
1 parent 8ea7eb5 commit d07caf1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public class ObserveCompositeTest {
static Stream<org.junit.jupiter.params.provider.Arguments> transports() {
return Stream.of(//
// ProtocolUsed - Client Endpoint Provider - Server Endpoint Provider
arguments(Protocol.COAP, "Californium", "Californium"));
arguments(Protocol.COAP, "Californium", "Californium"), //
arguments(Protocol.COAP, "Californium", "java-coap"));
}

/*---------------------------------/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ public class ReadCompositeTest {

static Stream<Arguments> transports() {

Object[][] transports = new Object[][]
// ProtocolUsed - Client Endpoint Provider - Server Endpoint Provider
{ { Protocol.COAP, "Californium", "Californium" } };
Object[][] transports = new Object[][] {
// ProtocolUsed - Client Endpoint Provider - Server Endpoint Provider
{ Protocol.COAP, "Californium", "Californium" }, //
{ Protocol.COAP, "Californium", "java-coap" } };

Object[][] contentFormats = new Object[][] { //
// {request content format, response content format}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ public class WriteCompositeTest {
}

static Stream<Arguments> transports() {

Object[][] transports = new Object[][]
// ProtocolUsed - Client Endpoint Provider - Server Endpoint Provider
{ { Protocol.COAP, "Californium", "Californium" } };
Object[][] transports = new Object[][] {
// ProtocolUsed - Client Endpoint Provider - Server Endpoint Provider
{ Protocol.COAP, "Californium", "Californium" }, //
{ Protocol.COAP, "Californium", "java-coap" } };

Object[] contentFormats = new Object[] { //
ContentFormat.SENML_JSON, //
Expand Down

0 comments on commit d07caf1

Please sign in to comment.