Files
db/sqlgen/mocks/UpdateSQLGenerator.go
whatandClaude 304d553b3c docs: Add CLAUDE.md with codebase guidance
Create comprehensive documentation for future Claude Code instances working in this repository, including:
- Development commands for testing, building, and code quality
- Core architecture overview of the SQL query builder system
- Directory structure and component explanations
- Testing patterns and conventions
- Key dependencies and their purposes

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-27 15:47:28 +08:00

32 lines
757 B
Go

// Code generated by mockery v1.0.0. DO NOT EDIT.
package mocks
import exp "git.fsdpf.net/go/db/exp"
import mock "github.com/stretchr/testify/mock"
import sb "git.fsdpf.net/go/db/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)
}