~thomas-voss/location-service/flatten

« back to all changes in this revision

Viewing changes to tests/provider_selection_policy_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:
6
6
#include <gmock/gmock.h>
7
7
#include <gtest/gtest.h>
8
8
 
9
 
namespace cul = com::ubuntu::location;
 
9
namespace cul = core::location;
10
10
 
11
11
namespace
12
12
{
31
31
public:
32
32
    DummyProvider(cul::Provider::Features feats = cul::Provider::Features::none,
33
33
                  cul::Provider::Requirements requs= cul::Provider::Requirements::none)
34
 
        : com::ubuntu::location::Provider(feats, requs)
 
34
        : core::location::Provider(feats, requs)
35
35
    {
36
36
    }
37
37