1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-01-22 03:08:44 +02:00
This commit is contained in:
gedi 2017-02-08 15:09:40 +02:00
parent cfb2877c66
commit 6bbe187a1a

View File

@ -67,6 +67,11 @@ type Sqlmock interface {
// By default it is set to - true. But if you use goroutines
// to parallelize your query executation, that option may
// be handy.
//
// This option may be turned on anytime during tests. As soon
// as it is switched to false, expectations will be matched
// in any order. Or otherwise if switched to true, any unmatched
// expectations will be expected in order
MatchExpectationsInOrder(bool)
}