1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-12 21:47:29 +02:00

mock Prepare to return error

This commit is contained in:
Luigi Kapaj
2014-09-23 17:38:15 -04:00
parent e36ad8d068
commit bdbf874463
3 changed files with 31 additions and 0 deletions

View File

@ -117,3 +117,10 @@ type expectedExec struct {
result driver.Result
}
// Prepare expectation
type expectedPrepare struct {
commonExpectation
statement driver.Stmt
}