// Code generated by mockery v1.0.0. DO NOT EDIT. package mocks import exp "github.com/doug-martin/goqu/v9/exp" import mock "github.com/stretchr/testify/mock" import sb "github.com/doug-martin/goqu/v9/internal/sb" // UpdateSQLGenerator is an autogenerated mock type for the UpdateSQLGenerator type type UpdateSQLGenerator struct { mock.Mock } // Dialect provides a mock function with given fields: func (_m *UpdateSQLGenerator) Dialect() string { ret := _m.Called() var r0 string if rf, ok := ret.Get(0).(func() string); ok { r0 = rf() } else { r0 = ret.Get(0).(string) } return r0 } // Generate provides a mock function with given fields: b, clauses func (_m *UpdateSQLGenerator) Generate(b sb.SQLBuilder, clauses exp.UpdateClauses) { _m.Called(b, clauses) }