From c3e36b89d5f5335d91a20269c052dd802f77e566 Mon Sep 17 00:00:00 2001 From: M Date: Mon, 21 Feb 2022 17:48:09 +0530 Subject: [PATCH] Addressing review comments --- mocks/NFSv4ACLsInterface.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 mocks/NFSv4ACLsInterface.go diff --git a/mocks/NFSv4ACLsInterface.go b/mocks/NFSv4ACLsInterface.go new file mode 100644 index 00000000..138d6968 --- /dev/null +++ b/mocks/NFSv4ACLsInterface.go @@ -0,0 +1,24 @@ +// Code generated by mockery v1.0.0. DO NOT EDIT. + +package mocks + +import mock "github.com/stretchr/testify/mock" + +// NFSv4ACLsInterface is an autogenerated mock type for the NFSv4ACLsInterface type +type NFSv4ACLsInterface struct { + mock.Mock +} + +// SetNfsv4Acls provides a mock function with given fields: acls, dir +func (_m *NFSv4ACLsInterface) SetNfsv4Acls(acls string, dir string) error { + ret := _m.Called(acls, dir) + + var r0 error + if rf, ok := ret.Get(0).(func(string, string) error); ok { + r0 = rf(acls, dir) + } else { + r0 = ret.Error(0) + } + + return r0 +}