@@ -153,7 +153,7 @@ public void ut4_CreateAccount() throws Exception {
153
153
* @throws Exception
154
154
*/
155
155
@ Test
156
- public void ut4_CreateAccount_InvalidCustomer () throws Exception {
156
+ public void ut5_CreateAccount_InvalidCustomer () throws Exception {
157
157
mockMvc
158
158
.perform (MockMvcRequestBuilders .post ("/v1/account/create" )
159
159
.contentType (MediaType .APPLICATION_JSON )
@@ -173,7 +173,7 @@ public void ut4_CreateAccount_InvalidCustomer() throws Exception {
173
173
* @throws Exception
174
174
*/
175
175
@ Test
176
- public void ut5_DepositMoney () throws Exception {
176
+ public void ut6_DepositMoney () throws Exception {
177
177
mockMvc
178
178
.perform (MockMvcRequestBuilders .post ("/v1/account/deposit" )
179
179
.contentType (MediaType .APPLICATION_JSON )
@@ -193,7 +193,7 @@ public void ut5_DepositMoney() throws Exception {
193
193
* @throws Exception
194
194
*/
195
195
@ Test
196
- public void ut6_WithdrawMoney () throws Exception {
196
+ public void ut7_WithdrawMoney () throws Exception {
197
197
mockMvc
198
198
.perform (MockMvcRequestBuilders .post ("/v1/account/withdraw" )
199
199
.contentType (MediaType .APPLICATION_JSON )
@@ -213,7 +213,7 @@ public void ut6_WithdrawMoney() throws Exception {
213
213
* @throws Exception
214
214
*/
215
215
@ Test
216
- public void ut7_WithdrawMoney_InsufficientFunds () throws Exception {
216
+ public void ut8_WithdrawMoney_InsufficientFunds () throws Exception {
217
217
mockMvc
218
218
.perform (MockMvcRequestBuilders .post ("/v1/account/withdraw" )
219
219
.contentType (MediaType .APPLICATION_JSON )
@@ -234,7 +234,7 @@ public void ut7_WithdrawMoney_InsufficientFunds() throws Exception {
234
234
* @throws Exception
235
235
*/
236
236
@ Test
237
- public void ut8_TransferMoney () throws Exception {
237
+ public void ut9_TransferMoney () throws Exception {
238
238
mockMvc
239
239
.perform (MockMvcRequestBuilders .post ("/v1/account/transfer" )
240
240
.contentType (MediaType .APPLICATION_JSON )
@@ -257,7 +257,7 @@ public void ut8_TransferMoney() throws Exception {
257
257
* @throws Exception
258
258
*/
259
259
@ Test
260
- public void ut9_TransferMoney_InvalidRecipient () throws Exception {
260
+ public void ut10_TransferMoney_InvalidRecipient () throws Exception {
261
261
mockMvc
262
262
.perform (MockMvcRequestBuilders .post ("/v1/account/transfer" )
263
263
.contentType (MediaType .APPLICATION_JSON )
0 commit comments