fork github.com/doug-martin

This commit is contained in:
2025-03-22 23:02:05 +08:00
commit f14642a736
131 changed files with 34555 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import exp "git.fsdpf.net/go/db/v2/exp"
import mock "github.com/stretchr/testify/mock"
import sb "git.fsdpf.net/go/db/v2/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)
}