本文整理汇总了Golang中github.com/stretchr/testify/mock.Arguments类的典型用法代码示例。如果您正苦于以下问题:Golang Arguments类的具体用法?Golang Arguments怎么用?Golang Arguments使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Arguments类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ByteArrayArg
// ByteArrayArg gets the argument at the specified index. Panics if there is no
// argument, or if the argument is of the wrong type.
func ByteArrayArg(args mock.Arguments, index int) []byte {
var s []byte
var ok bool
if s, ok = args.Get(index).([]byte); !ok {
panic(fmt.Sprintf("assert: arguments: ByteArrayArg(%d) failed because object wasn't correct type: %v", index, args.Get(index)))
}
return s
}
示例2: Do
func (m *MockConn) Do(cmd string, cmdArgs ...interface{}) (interface{}, error) {
m.Mutex.Lock()
defer m.Mutex.Unlock()
var args mock.Arguments
if len(cmdArgs) == 0 {
args = m.Mock.Called(cmd)
} else {
args = m.Mock.Called(cmd, cmdArgs)
}
return args.Get(0), args.Error(1)
}
示例3: status
func status(args mock.Arguments, at int) (val mesos.Status) {
if x := args.Get(at); x != nil {
val = x.(mesos.Status)
}
return
}