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>
32 lines
757 B
Go
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"
|
|
|
|
// InsertSQLGenerator is an autogenerated mock type for the InsertSQLGenerator type
|
|
type InsertSQLGenerator struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// Dialect provides a mock function with given fields:
|
|
func (_m *InsertSQLGenerator) 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 *InsertSQLGenerator) Generate(b sb.SQLBuilder, clauses exp.InsertClauses) {
|
|
_m.Called(b, clauses)
|
|
}
|