~thomas-voss/location-service/simplify-namespaces

« back to all changes in this revision

Viewing changes to tests/harvester_test.cpp

  • Committer: Thomas Voß
  • Date: 2016-06-26 21:17:03 UTC
  • Revision ID: thomas.voss@canonical.com-20160626211703-aptpytiwrjdr1snn
Simplify namespaces.

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
17
17
 */
18
18
 
19
 
#include <com/ubuntu/location/service/harvester.h>
 
19
#include <location/service/harvester.h>
20
20
 
21
21
#include "mock_connectivity_manager.h"
22
22
#include "mock_reporter.h"
25
25
#include <gmock/gmock.h>
26
26
#include <gtest/gtest.h>
27
27
 
28
 
namespace location = com::ubuntu::location;
29
 
 
30
28
namespace
31
29
{
32
30
location::Update<location::Position> reference_position_update
51
49
 
52
50
    location::service::Harvester::Configuration config
53
51
    {
54
 
        location::connectivity::platform_default_manager(),
 
52
        com::ubuntu::location::connectivity::platform_default_manager(),
55
53
        reporter
56
54
    };
57
55
 
70
68
 
71
69
    location::service::Harvester::Configuration config
72
70
    {
73
 
        location::connectivity::platform_default_manager(),
 
71
        com::ubuntu::location::connectivity::platform_default_manager(),
74
72
        reporter
75
73
    };
76
74