(ctx context.Context, path string)
| 64 | } |
| 65 | |
| 66 | func (m *MockFileOperator) Exists(ctx context.Context, path string) (bool, error) { |
| 67 | args := m.Called(ctx, path) |
| 68 | return args.Bool(0), args.Error(1) |
| 69 | } |
| 70 | func (m *MockFileOperator) RunCommand(ctx context.Context, command []string) (*CommandOutput, error) { |
| 71 | args := m.Called(ctx, command) |
| 72 | if args.Get(0) == nil { |