コード例 #1
0
ファイル: dep_test.go プロジェクト: aws/amazon-ssm-agent
func (m *fsvJsonHandlerMock) Marshal(v interface{}) ([]byte, error) {
	args := m.Called(v)
	return test.ByteArrayArg(args, 0), args.Error(1)
}
コード例 #2
0
ファイル: dep_test.go プロジェクト: aws/amazon-ssm-agent
func (m *fsvFileSystemMock) ReadFile(path string) ([]byte, error) {
	args := m.Called(path)
	return test.ByteArrayArg(args, 0), args.Error(1)
}