This commit is contained in:
Lunny Xiao 2020-01-29 13:44:52 +08:00
parent d3c68587df
commit 24fc328780
No known key found for this signature in database
GPG Key ID: C3B7C91B632F738A
2 changed files with 1 additions and 2 deletions

View File

@ -93,12 +93,10 @@ type EngineInterface interface {
SetCacher(string, core.Cacher)
SetColumnMapper(core.IMapper)
SetConnMaxLifetime(time.Duration)
SetColumnMapper(core.IMapper)
SetDefaultCacher(core.Cacher)
SetLogger(logger core.ILogger)
SetLogLevel(core.LogLevel)
SetMapper(core.IMapper)
SetTableMapper(core.IMapper)
SetMaxOpenConns(int)
SetMaxIdleConns(int)
SetSchema(string)

View File

@ -12,6 +12,7 @@ import (
"time"
"github.com/stretchr/testify/assert"
"xorm.io/core"
)
func TestUpdateMap(t *testing.T) {