github.com/CyCoreSystems/ari@v4.8.4+incompatible/client/arimocks/Matcher.go (about)

     1  // Code generated by mockery v1.0.0. DO NOT EDIT.
     2  
     3  package arimocks
     4  
     5  import ari "github.com/CyCoreSystems/ari"
     6  import mock "github.com/stretchr/testify/mock"
     7  
     8  // Matcher is an autogenerated mock type for the Matcher type
     9  type Matcher struct {
    10  	mock.Mock
    11  }
    12  
    13  // Match provides a mock function with given fields: o
    14  func (_m *Matcher) Match(o *ari.Key) bool {
    15  	ret := _m.Called(o)
    16  
    17  	var r0 bool
    18  	if rf, ok := ret.Get(0).(func(*ari.Key) bool); ok {
    19  		r0 = rf(o)
    20  	} else {
    21  		r0 = ret.Get(0).(bool)
    22  	}
    23  
    24  	return r0
    25  }