github.com/sleungcy-sap/cli@v7.1.0+incompatible/cf/requirements/requirementsfakes/fake_requirement.go (about)

     1  // Code generated by counterfeiter. DO NOT EDIT.
     2  package requirementsfakes
     3  
     4  import (
     5  	"sync"
     6  
     7  	"code.cloudfoundry.org/cli/cf/requirements"
     8  )
     9  
    10  type FakeRequirement struct {
    11  	ExecuteStub        func() error
    12  	executeMutex       sync.RWMutex
    13  	executeArgsForCall []struct {
    14  	}
    15  	executeReturns struct {
    16  		result1 error
    17  	}
    18  	executeReturnsOnCall map[int]struct {
    19  		result1 error
    20  	}
    21  	invocations      map[string][][]interface{}
    22  	invocationsMutex sync.RWMutex
    23  }
    24  
    25  func (fake *FakeRequirement) Execute() error {
    26  	fake.executeMutex.Lock()
    27  	ret, specificReturn := fake.executeReturnsOnCall[len(fake.executeArgsForCall)]
    28  	fake.executeArgsForCall = append(fake.executeArgsForCall, struct {
    29  	}{})
    30  	fake.recordInvocation("Execute", []interface{}{})
    31  	fake.executeMutex.Unlock()
    32  	if fake.ExecuteStub != nil {
    33  		return fake.ExecuteStub()
    34  	}
    35  	if specificReturn {
    36  		return ret.result1
    37  	}
    38  	fakeReturns := fake.executeReturns
    39  	return fakeReturns.result1
    40  }
    41  
    42  func (fake *FakeRequirement) ExecuteCallCount() int {
    43  	fake.executeMutex.RLock()
    44  	defer fake.executeMutex.RUnlock()
    45  	return len(fake.executeArgsForCall)
    46  }
    47  
    48  func (fake *FakeRequirement) ExecuteCalls(stub func() error) {
    49  	fake.executeMutex.Lock()
    50  	defer fake.executeMutex.Unlock()
    51  	fake.ExecuteStub = stub
    52  }
    53  
    54  func (fake *FakeRequirement) ExecuteReturns(result1 error) {
    55  	fake.executeMutex.Lock()
    56  	defer fake.executeMutex.Unlock()
    57  	fake.ExecuteStub = nil
    58  	fake.executeReturns = struct {
    59  		result1 error
    60  	}{result1}
    61  }
    62  
    63  func (fake *FakeRequirement) ExecuteReturnsOnCall(i int, result1 error) {
    64  	fake.executeMutex.Lock()
    65  	defer fake.executeMutex.Unlock()
    66  	fake.ExecuteStub = nil
    67  	if fake.executeReturnsOnCall == nil {
    68  		fake.executeReturnsOnCall = make(map[int]struct {
    69  			result1 error
    70  		})
    71  	}
    72  	fake.executeReturnsOnCall[i] = struct {
    73  		result1 error
    74  	}{result1}
    75  }
    76  
    77  func (fake *FakeRequirement) Invocations() map[string][][]interface{} {
    78  	fake.invocationsMutex.RLock()
    79  	defer fake.invocationsMutex.RUnlock()
    80  	fake.executeMutex.RLock()
    81  	defer fake.executeMutex.RUnlock()
    82  	copiedInvocations := map[string][][]interface{}{}
    83  	for key, value := range fake.invocations {
    84  		copiedInvocations[key] = value
    85  	}
    86  	return copiedInvocations
    87  }
    88  
    89  func (fake *FakeRequirement) recordInvocation(key string, args []interface{}) {
    90  	fake.invocationsMutex.Lock()
    91  	defer fake.invocationsMutex.Unlock()
    92  	if fake.invocations == nil {
    93  		fake.invocations = map[string][][]interface{}{}
    94  	}
    95  	if fake.invocations[key] == nil {
    96  		fake.invocations[key] = [][]interface{}{}
    97  	}
    98  	fake.invocations[key] = append(fake.invocations[key], args)
    99  }
   100  
   101  var _ requirements.Requirement = new(FakeRequirement)