~ubuntu-branches/ubuntu/utopic/mir/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/unit-tests/logging/test_legacy_input_report.cpp

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release
  • Date: 2014-03-10 19:28:46 UTC
  • mto: This revision was merged to the branch mainline in revision 63.
  • Revision ID: package-import@ubuntu.com-20140310192846-rq9qm3ec26yrelo2
Tags: upstream-0.1.6+14.04.20140310
ImportĀ upstreamĀ versionĀ 0.1.6+14.04.20140310

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Alan Griffiths <alan@octopull.co.uk>
17
17
 */
18
18
 
19
 
#include "mir/logging/input_report.h"
 
19
#include "mir/report/legacy_input_report.h"
20
20
#include "mir/logging/logger.h"
21
21
 
22
22
#include <std/Log.h>
26
26
#include <gtest/gtest.h>
27
27
#include <gmock/gmock.h>
28
28
 
29
 
namespace ml  = mir::logging;
30
 
namespace mli = mir::logging::legacy_input_report;
 
29
namespace ml = mir::logging;
 
30
namespace mri = mir::report::legacy_input;
31
31
 
32
32
using testing::_;
33
33
 
46
46
 
47
47
    InputReport()
48
48
    {
49
 
        mli::initialize(mir::test::fake_shared(logger));
 
49
        mri::initialize(mir::test::fake_shared(logger));
50
50
    }
51
51
};
52
52