@@ -76,7 +76,7 @@ public void stop() throws InterruptedException {
76
76
}
77
77
78
78
@ Test
79
- public void bootstrapSecureWithPSK () throws NonUniqueSecurityInfoException , InvalidConfigurationException {
79
+ public void bootstrap_using_psk () throws NonUniqueSecurityInfoException , InvalidConfigurationException {
80
80
// Create DM Server without security & start it
81
81
server = givenServer .using (Protocol .COAP ).build ();
82
82
server .start ();
@@ -110,7 +110,7 @@ public void bootstrapSecureWithPSK() throws NonUniqueSecurityInfoException, Inva
110
110
}
111
111
112
112
@ Test
113
- public void bootstrapSecureWithBadPSKKey () throws InvalidConfigurationException , NonUniqueSecurityInfoException {
113
+ public void bootstrap_failed_using_bad_psk () throws InvalidConfigurationException , NonUniqueSecurityInfoException {
114
114
// Create DM Server without security & start it
115
115
server = givenServer .using (Protocol .COAP ).build ();
116
116
server .start ();
@@ -141,7 +141,7 @@ public void bootstrapSecureWithBadPSKKey() throws InvalidConfigurationException,
141
141
}
142
142
143
143
@ Test
144
- public void bootstrapSecureWithRPK () throws NonUniqueSecurityInfoException , InvalidConfigurationException {
144
+ public void bootstrap_using_rpk () throws NonUniqueSecurityInfoException , InvalidConfigurationException {
145
145
// Create DM Server without security & start it
146
146
server = givenServer .using (Protocol .COAP ).build ();
147
147
server .start ();
@@ -177,7 +177,8 @@ public void bootstrapSecureWithRPK() throws NonUniqueSecurityInfoException, Inva
177
177
}
178
178
179
179
@ Test
180
- public void bootstrapToPSKServer () throws NonUniqueSecurityInfoException , InvalidConfigurationException {
180
+ public void bootstrap_unsecure_then_register_to_server_using_psk ()
181
+ throws NonUniqueSecurityInfoException , InvalidConfigurationException {
181
182
// Create DM Server without security & start it
182
183
server = givenServer .using (Protocol .COAPS ).build ();
183
184
server .start ();
@@ -207,7 +208,8 @@ public void bootstrapToPSKServer() throws NonUniqueSecurityInfoException, Invali
207
208
}
208
209
209
210
@ Test
210
- public void bootstrapToRPKServer () throws NonUniqueSecurityInfoException , InvalidConfigurationException {
211
+ public void bootstrap_unsecure_then_register_to_server_using_rpk ()
212
+ throws NonUniqueSecurityInfoException , InvalidConfigurationException {
211
213
// Create DM Server without security & start it
212
214
server = givenServer .using (Protocol .COAPS ).using (serverPublicKey , serverPrivateKey ).build ();
213
215
server .start ();
0 commit comments