~mterry/indicator-sound/snap-root

« back to all changes in this revision

Viewing changes to tests/service-mocks/accounts-mock/AccountsMock.cpp

  • Committer: CI Train Bot
  • Author(s): Xavi Garcia Mena
  • Date: 2016-01-05 15:08:02 UTC
  • mfrom: (513.1.2 restore-osd-notifications)
  • Revision ID: ci-train-bot@canonical.com-20160105150802-9n0tg5ipbbq2qbab
This branch just readds the OSD notifications code, that was reverted in trunk as the corresponding silo was also rolled back after landing.
Approved by: PS Jenkins bot, Xavi Garcia

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2015 Canonical, Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3, as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful, but
 
9
 * WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
 * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
 * PURPOSE.  See the GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License along
 
14
 * with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Xavi Garcia <xavi.garcia.mena@canonical.com>
 
17
 */
 
18
#include <QDebug>
 
19
 
 
20
#include "AccountsMock.h"
 
21
#include "AccountsDefs.h"
 
22
 
 
23
using namespace ubuntu::indicators::testing;
 
24
 
 
25
AccountsMock::AccountsMock(QObject* parent)
 
26
    : QObject(parent)
 
27
{
 
28
}
 
29
 
 
30
AccountsMock::~AccountsMock() = default;
 
31
 
 
32
QDBusObjectPath AccountsMock::FindUserByName(QString const & username) const
 
33
{
 
34
    return QDBusObjectPath(USER_PATH);
 
35
}
 
36
 
 
37
QDBusObjectPath AccountsMock::FindUserById(int64_t uid) const
 
38
{
 
39
    return QDBusObjectPath(USER_PATH);
 
40
}