summaryrefslogtreecommitdiff
path: root/mock_file_writer.h
blob: f5a7f3144246cdb0132d6b60dcf869f105f6bbbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2015 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef APMANAGER_MOCK_FILE_WRITER_H_
#define APMANAGER_MOCK_FILE_WRITER_H_

#include <string>

#include <base/lazy_instance.h>
#include <gmock/gmock.h>

#include "apmanager/file_writer.h"

namespace apmanager {

class MockFileWriter : public FileWriter {
 public:
  ~MockFileWriter() override;

  // This is a singleton. Use MockFileWriter::GetInstance()->Foo().
  static MockFileWriter* GetInstance();

  MOCK_METHOD2(Write, bool(const std::string& file_name,
                           const std::string& content));

 protected:
  MockFileWriter();

 private:
  friend struct base::DefaultLazyInstanceTraits<MockFileWriter>;

  DISALLOW_COPY_AND_ASSIGN(MockFileWriter);
};

}  // namespace apmanager

#endif  // APMANAGER_MOCK_FILE_WRITER_H_