~thomas-voss/location-service/flatten

« back to all changes in this revision

Viewing changes to tests/harvester_test.cpp

  • Committer: thomas-voss
  • Date: 2015-02-03 12:21:33 UTC
  • Revision ID: thomas.voss@canonical.com-20150203122133-660kjot28cz7dx6m
Adjust namespace to core::location for all classes not in com::ubuntu::location::connectivity.

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
#include <gmock/gmock.h>
26
26
#include <gtest/gtest.h>
27
27
 
28
 
namespace location = com::ubuntu::location;
 
28
namespace location = core::location;
29
29
 
30
30
namespace
31
31
{
51
51
 
52
52
    location::service::Harvester::Configuration config
53
53
    {
54
 
        location::connectivity::platform_default_manager(),
 
54
        com::ubuntu::location::connectivity::platform_default_manager(),
55
55
        reporter
56
56
    };
57
57
 
70
70
 
71
71
    location::service::Harvester::Configuration config
72
72
    {
73
 
        location::connectivity::platform_default_manager(),
 
73
        com::ubuntu::location::connectivity::platform_default_manager(),
74
74
        reporter
75
75
    };
76
76