use of liquibase.database.PreparedStatementFactory in project liquibase by liquibase.
the class UpdateExecutablePreparedStatementTest method setUp.
@Before
public void setUp() throws Exception {
initMocks(this);
given(connection.prepareStatement(anyString())).willReturn(ps);
database = new MSSQLDatabase();
preparedStatementFactory = new PreparedStatementFactory(connection);
}
Aggregations