(ctx context.Context, path string, content string)
| 54 | } |
| 55 | |
| 56 | func (m *MockFileOperator) WriteFile(ctx context.Context, path string, content string) error { |
| 57 | args := m.Called(ctx, path, content) |
| 58 | return args.Error(0) |
| 59 | } |
| 60 | |
| 61 | func (m *MockFileOperator) IsDirectory(ctx context.Context, path string) (bool, error) { |
| 62 | args := m.Called(ctx, path) |