当前位置: 首页>>代码示例>>Golang>>正文


Golang mock.Arguments类代码示例

本文整理汇总了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
}
开发者ID:aws,项目名称:amazon-ssm-agent,代码行数:10,代码来源:mock.go

示例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)
}
开发者ID:ralfonso,项目名称:styx,代码行数:11,代码来源:cluster_client_test.go

示例3: status

func status(args mock.Arguments, at int) (val mesos.Status) {
	if x := args.Get(at); x != nil {
		val = x.(mesos.Status)
	}
	return
}
开发者ID:qinguoan,项目名称:vulcan,代码行数:6,代码来源:mock_test.go


注:本文中的github.com/stretchr/testify/mock.Arguments类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。