@@ -95,7 +95,7 @@ public void setup() throws Exception {
95
95
96
96
97
97
@ Test
98
- public void testQueryWithResultSetExtractor () throws SQLException {
98
+ public void queryWithResultSetExtractor () throws SQLException {
99
99
given (resultSet .next ()).willReturn (true );
100
100
given (resultSet .getInt ("id" )).willReturn (1 );
101
101
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -122,7 +122,7 @@ public void testQueryWithResultSetExtractor() throws SQLException {
122
122
}
123
123
124
124
@ Test
125
- public void testQueryWithResultSetExtractorNoParameters () throws SQLException {
125
+ public void queryWithResultSetExtractorNoParameters () throws SQLException {
126
126
given (resultSet .next ()).willReturn (true );
127
127
given (resultSet .getInt ("id" )).willReturn (1 );
128
128
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -145,7 +145,7 @@ public void testQueryWithResultSetExtractorNoParameters() throws SQLException {
145
145
}
146
146
147
147
@ Test
148
- public void testQueryWithRowCallbackHandler () throws SQLException {
148
+ public void queryWithRowCallbackHandler () throws SQLException {
149
149
given (resultSet .next ()).willReturn (true , false );
150
150
given (resultSet .getInt ("id" )).willReturn (1 );
151
151
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -172,7 +172,7 @@ public void testQueryWithRowCallbackHandler() throws SQLException {
172
172
}
173
173
174
174
@ Test
175
- public void testQueryWithRowCallbackHandlerNoParameters () throws SQLException {
175
+ public void queryWithRowCallbackHandlerNoParameters () throws SQLException {
176
176
given (resultSet .next ()).willReturn (true , false );
177
177
given (resultSet .getInt ("id" )).willReturn (1 );
178
178
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -195,7 +195,7 @@ public void testQueryWithRowCallbackHandlerNoParameters() throws SQLException {
195
195
}
196
196
197
197
@ Test
198
- public void testQueryWithRowMapper () throws SQLException {
198
+ public void queryWithRowMapper () throws SQLException {
199
199
given (resultSet .next ()).willReturn (true , false );
200
200
given (resultSet .getInt ("id" )).willReturn (1 );
201
201
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -223,7 +223,7 @@ public void testQueryWithRowMapper() throws SQLException {
223
223
}
224
224
225
225
@ Test
226
- public void testQueryWithRowMapperNoParameters () throws SQLException {
226
+ public void queryWithRowMapperNoParameters () throws SQLException {
227
227
given (resultSet .next ()).willReturn (true , false );
228
228
given (resultSet .getInt ("id" )).willReturn (1 );
229
229
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -247,7 +247,7 @@ public void testQueryWithRowMapperNoParameters() throws SQLException {
247
247
}
248
248
249
249
@ Test
250
- public void testQueryForObjectWithRowMapper () throws SQLException {
250
+ public void queryForObjectWithRowMapper () throws SQLException {
251
251
given (resultSet .next ()).willReturn (true , false );
252
252
given (resultSet .getInt ("id" )).willReturn (1 );
253
253
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -274,7 +274,7 @@ public void testQueryForObjectWithRowMapper() throws SQLException {
274
274
}
275
275
276
276
@ Test
277
- public void testQueryForStreamWithRowMapper () throws SQLException {
277
+ public void queryForStreamWithRowMapper () throws SQLException {
278
278
given (resultSet .next ()).willReturn (true , false );
279
279
given (resultSet .getInt ("id" )).willReturn (1 );
280
280
given (resultSet .getString ("forename" )).willReturn ("rod" );
@@ -307,7 +307,7 @@ public void testQueryForStreamWithRowMapper() throws SQLException {
307
307
}
308
308
309
309
@ Test
310
- public void testUpdate () throws SQLException {
310
+ public void update () throws SQLException {
311
311
given (preparedStatement .executeUpdate ()).willReturn (1 );
312
312
313
313
params .add (1 );
@@ -323,7 +323,7 @@ public void testUpdate() throws SQLException {
323
323
}
324
324
325
325
@ Test
326
- public void testUpdateWithTypedParameters () throws SQLException {
326
+ public void updateWithTypedParameters () throws SQLException {
327
327
given (preparedStatement .executeUpdate ()).willReturn (1 );
328
328
329
329
params .add (new SqlParameterValue (Types .DECIMAL , 1 ));
@@ -339,7 +339,7 @@ public void testUpdateWithTypedParameters() throws SQLException {
339
339
}
340
340
341
341
@ Test
342
- public void testUpdateAndGeneratedKeys () throws SQLException {
342
+ public void updateAndGeneratedKeys () throws SQLException {
343
343
given (resultSetMetaData .getColumnCount ()).willReturn (1 );
344
344
given (resultSetMetaData .getColumnLabel (1 )).willReturn ("1" );
345
345
given (resultSet .getMetaData ()).willReturn (resultSetMetaData );
0 commit comments