~thomas-voss/location-service/refactor-location-position

« back to all changes in this revision

Viewing changes to 3rd-party/ichnaea/tests/radio_cell_test.cpp

  • Committer: Thomas Voß
  • Date: 2016-08-14 19:36:05 UTC
  • Revision ID: thomas.voss@canonical.com-20160814193605-e6c0xitja9yncmw8
Add back mls provider relying on Mozilla's location service.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (C) 2016 Canonical Ltd.
 
2
// 
 
3
// This library is free software: you can redistribute it and/or modify
 
4
// it under the terms of the GNU Lesser General Public License as published
 
5
// by the Free Software Foundation, either version 3 of the License, or
 
6
// (at your option) any later version.
 
7
// 
 
8
// This program is distributed in the hope that it will be useful,
 
9
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
// GNU General Public License for more details.
 
12
// 
 
13
// You should have received a copy of the GNU Lesser General Public License
 
14
// along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
#include <ichnaea/radio_cell.h>
 
16
 
 
17
#include <gtest/gtest.h>
 
18
 
 
19
#include <sstream>
 
20
 
 
21
TEST(RadioCell, stream_insertion_operator_for_type_works)
 
22
{
 
23
    {std::stringstream ss; ss << ichnaea::RadioCell::RadioType::gsm; EXPECT_EQ("gsm", ss.str());}
 
24
    {std::stringstream ss; ss << ichnaea::RadioCell::RadioType::lte; EXPECT_EQ("lte", ss.str());}
 
25
    {std::stringstream ss; ss << ichnaea::RadioCell::RadioType::wcdma; EXPECT_EQ("wcdma", ss.str());}
 
26
}