func (m *fsvJsonHandlerMock) Marshal(v interface{}) ([]byte, error) { args := m.Called(v) return test.ByteArrayArg(args, 0), args.Error(1) }
func (m *fsvFileSystemMock) ReadFile(path string) ([]byte, error) { args := m.Called(path) return test.ByteArrayArg(args, 0), args.Error(1) }