Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(887)

Side by Side Diff: chromeos/process_mock.h

Issue 6509006: libchromeos: add process control library, syslog logging capability, and run unit tests (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/common.git@master
Patch Set: respond to petkov, update interface Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROMEOS_PROCESS_MOCK_H_
6 #define CHROMEOS_PROCESS_MOCK_H_
7
8 #include <string>
9
10 #include <chromeos/process.h>
11 #include <gmock/gmock.h>
12
13 namespace chromeos {
14
15 class ProcessMock : public Process {
16 public:
17 ProcessMock() {}
18 virtual ~ProcessMock() {}
19
20 MOCK_METHOD1(AddArg, void(const std::string& arg));
21 MOCK_METHOD1(RedirectOutput, void(const std::string& output_file));
22 MOCK_METHOD0(Start, bool());
23 MOCK_METHOD0(Wait, int());
24 MOCK_METHOD2(HandleSigChild, bool(pid_t pid, int status));
25 MOCK_METHOD0(Run, int());
26 MOCK_METHOD0(GetPid, pid_t());
27 MOCK_METHOD2(Kill, bool(int signal, int timeout));
28 MOCK_METHOD1(Reset, void(pid_t));
29 MOCK_METHOD1(ResetPidByFile, bool(const std::string& pid_file));
30 MOCK_METHOD0(Release, pid_t());
31 };
32
33 } // namespace chromeos
34
35 #endif // CHROMEOS_PROCESS_MOCK_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698