~fboucault/unity-mir/dpr_rebase_qt_5.1

« back to all changes in this revision

Viewing changes to tests/mock_oom_controller.h

Refactor Oom(Score)Adj to rely on process-cpp helper library. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2013 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it under
 
5
 * the terms of the GNU Lesser General Public License version 3, as published by
 
6
 * the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
 
10
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
11
 * Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
#ifndef MOCK_OOM_CONTROLLER_H
 
18
#define MOCK_OOM_CONTROLLER_H
 
19
 
 
20
#include <Unity/Application/processcontroller.h>
 
21
 
 
22
#include <gmock/gmock.h>
 
23
 
 
24
namespace testing
 
25
{
 
26
struct MockOomController : public ProcessController::OomController
 
27
{
 
28
    MOCK_METHOD1(ensureProcessLikelyToBeKilled, void(pid_t));
 
29
    MOCK_METHOD1(ensureProcessUnlikelyToBeKilled, void(pid_t));
 
30
};
 
31
}
 
32
 
 
33
#endif // MOCK_OOM_CONTROLLER_H