groupsfakes

package
v0.4.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 7, 2023 License: MIT Imports: 3 Imported by: 0

Documentation

Overview

Code generated by counterfeiter. DO NOT EDIT.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type FakeGroupService

type FakeGroupService struct {
	AddGroupStub func(string, string) (*groups.AddGroupResponseDataDetails, error)

	GroupByNameStub func(string, string) (*types.Group, error)

	GroupClustersStub func(string, string, []string) (*groups.GroupClustersResponseDataDetails, error)

	GroupsStub func(string) (types.GroupList, error)

	RemoveGroupStub func(string, string) (*groups.RemoveGroupResponseDataDetails, error)

	RemoveGroupByNameStub func(string, string) (*groups.RemoveGroupByNameResponseDataDetails, error)

	UnGroupClustersStub func(string, string, []string) (*groups.UnGroupClustersResponseDataDetails, error)
	// contains filtered or unexported fields
}

func (*FakeGroupService) AddGroup

func (fake *FakeGroupService) AddGroup(arg1 string, arg2 string) (*groups.AddGroupResponseDataDetails, error)

func (*FakeGroupService) AddGroupArgsForCall

func (fake *FakeGroupService) AddGroupArgsForCall(i int) (string, string)

func (*FakeGroupService) AddGroupCallCount

func (fake *FakeGroupService) AddGroupCallCount() int

func (*FakeGroupService) AddGroupCalls

func (fake *FakeGroupService) AddGroupCalls(stub func(string, string) (*groups.AddGroupResponseDataDetails, error))

func (*FakeGroupService) AddGroupReturns

func (fake *FakeGroupService) AddGroupReturns(result1 *groups.AddGroupResponseDataDetails, result2 error)

func (*FakeGroupService) AddGroupReturnsOnCall

func (fake *FakeGroupService) AddGroupReturnsOnCall(i int, result1 *groups.AddGroupResponseDataDetails, result2 error)

func (*FakeGroupService) GroupByName

func (fake *FakeGroupService) GroupByName(arg1 string, arg2 string) (*types.Group, error)

func (*FakeGroupService) GroupByNameArgsForCall

func (fake *FakeGroupService) GroupByNameArgsForCall(i int) (string, string)

func (*FakeGroupService) GroupByNameCallCount

func (fake *FakeGroupService) GroupByNameCallCount() int

func (*FakeGroupService) GroupByNameCalls

func (fake *FakeGroupService) GroupByNameCalls(stub func(string, string) (*types.Group, error))

func (*FakeGroupService) GroupByNameReturns

func (fake *FakeGroupService) GroupByNameReturns(result1 *types.Group, result2 error)

func (*FakeGroupService) GroupByNameReturnsOnCall

func (fake *FakeGroupService) GroupByNameReturnsOnCall(i int, result1 *types.Group, result2 error)

func (*FakeGroupService) GroupClusters

func (fake *FakeGroupService) GroupClusters(arg1 string, arg2 string, arg3 []string) (*groups.GroupClustersResponseDataDetails, error)

func (*FakeGroupService) GroupClustersArgsForCall

func (fake *FakeGroupService) GroupClustersArgsForCall(i int) (string, string, []string)

func (*FakeGroupService) GroupClustersCallCount

func (fake *FakeGroupService) GroupClustersCallCount() int

func (*FakeGroupService) GroupClustersCalls

func (fake *FakeGroupService) GroupClustersCalls(stub func(string, string, []string) (*groups.GroupClustersResponseDataDetails, error))

func (*FakeGroupService) GroupClustersReturns

func (fake *FakeGroupService) GroupClustersReturns(result1 *groups.GroupClustersResponseDataDetails, result2 error)

func (*FakeGroupService) GroupClustersReturnsOnCall

func (fake *FakeGroupService) GroupClustersReturnsOnCall(i int, result1 *groups.GroupClustersResponseDataDetails, result2 error)

func (*FakeGroupService) Groups

func (fake *FakeGroupService) Groups(arg1 string) (types.GroupList, error)

func (*FakeGroupService) GroupsArgsForCall

func (fake *FakeGroupService) GroupsArgsForCall(i int) string

func (*FakeGroupService) GroupsCallCount

func (fake *FakeGroupService) GroupsCallCount() int

func (*FakeGroupService) GroupsCalls

func (fake *FakeGroupService) GroupsCalls(stub func(string) (types.GroupList, error))

func (*FakeGroupService) GroupsReturns

func (fake *FakeGroupService) GroupsReturns(result1 types.GroupList, result2 error)

func (*FakeGroupService) GroupsReturnsOnCall

func (fake *FakeGroupService) GroupsReturnsOnCall(i int, result1 types.GroupList, result2 error)

func (*FakeGroupService) Invocations

func (fake *FakeGroupService) Invocations() map[string][][]interface{}

func (*FakeGroupService) RemoveGroup

func (fake *FakeGroupService) RemoveGroup(arg1 string, arg2 string) (*groups.RemoveGroupResponseDataDetails, error)

func (*FakeGroupService) RemoveGroupArgsForCall

func (fake *FakeGroupService) RemoveGroupArgsForCall(i int) (string, string)

func (*FakeGroupService) RemoveGroupByName

func (fake *FakeGroupService) RemoveGroupByName(arg1 string, arg2 string) (*groups.RemoveGroupByNameResponseDataDetails, error)

func (*FakeGroupService) RemoveGroupByNameArgsForCall

func (fake *FakeGroupService) RemoveGroupByNameArgsForCall(i int) (string, string)

func (*FakeGroupService) RemoveGroupByNameCallCount

func (fake *FakeGroupService) RemoveGroupByNameCallCount() int

func (*FakeGroupService) RemoveGroupByNameCalls

func (fake *FakeGroupService) RemoveGroupByNameCalls(stub func(string, string) (*groups.RemoveGroupByNameResponseDataDetails, error))

func (*FakeGroupService) RemoveGroupByNameReturns

func (fake *FakeGroupService) RemoveGroupByNameReturns(result1 *groups.RemoveGroupByNameResponseDataDetails, result2 error)

func (*FakeGroupService) RemoveGroupByNameReturnsOnCall

func (fake *FakeGroupService) RemoveGroupByNameReturnsOnCall(i int, result1 *groups.RemoveGroupByNameResponseDataDetails, result2 error)

func (*FakeGroupService) RemoveGroupCallCount

func (fake *FakeGroupService) RemoveGroupCallCount() int

func (*FakeGroupService) RemoveGroupCalls

func (fake *FakeGroupService) RemoveGroupCalls(stub func(string, string) (*groups.RemoveGroupResponseDataDetails, error))

func (*FakeGroupService) RemoveGroupReturns

func (fake *FakeGroupService) RemoveGroupReturns(result1 *groups.RemoveGroupResponseDataDetails, result2 error)

func (*FakeGroupService) RemoveGroupReturnsOnCall

func (fake *FakeGroupService) RemoveGroupReturnsOnCall(i int, result1 *groups.RemoveGroupResponseDataDetails, result2 error)

func (*FakeGroupService) UnGroupClusters added in v0.4.0

func (fake *FakeGroupService) UnGroupClusters(arg1 string, arg2 string, arg3 []string) (*groups.UnGroupClustersResponseDataDetails, error)

func (*FakeGroupService) UnGroupClustersArgsForCall added in v0.4.0

func (fake *FakeGroupService) UnGroupClustersArgsForCall(i int) (string, string, []string)

func (*FakeGroupService) UnGroupClustersCallCount added in v0.4.0

func (fake *FakeGroupService) UnGroupClustersCallCount() int

func (*FakeGroupService) UnGroupClustersCalls added in v0.4.0

func (fake *FakeGroupService) UnGroupClustersCalls(stub func(string, string, []string) (*groups.UnGroupClustersResponseDataDetails, error))

func (*FakeGroupService) UnGroupClustersReturns added in v0.4.0

func (fake *FakeGroupService) UnGroupClustersReturns(result1 *groups.UnGroupClustersResponseDataDetails, result2 error)

func (*FakeGroupService) UnGroupClustersReturnsOnCall added in v0.4.0

func (fake *FakeGroupService) UnGroupClustersReturnsOnCall(i int, result1 *groups.UnGroupClustersResponseDataDetails, result2 error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL