Polishing

This commit is contained in:
Sam Brannen
2023-07-15 12:53:12 +02:00
parent 8629182822
commit e6d360c1c6
11 changed files with 82 additions and 62 deletions

View File

@@ -33,7 +33,7 @@ import static org.mockito.BDDMockito.verify;
* @author Philippe Marschall
* @since 6.1
*/
public class SqlArrayValueTests {
class SqlArrayValueTests {
private final Connection con = mock();
@@ -47,7 +47,7 @@ public class SqlArrayValueTests {
@Test
public void setValue() throws SQLException {
void setValue() throws SQLException {
given(this.ps.getConnection()).willReturn(this.con);
given(this.con.createArrayOf("smallint", elements)).willReturn(this.arr);