1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-10-01 00:10:50 +00:00
gnss-sdr/src/tests/string_converter/string_converter_test.cc
2015-01-08 19:49:59 +01:00

78 lines
2.3 KiB
C++

/*!
* \file string_converter_test.cc
* \brief This file implements unit tests for the StringConverter class.
* \author Carlos Aviles, 2010. carlos.avilesr(at)googlemail.com
* Carles Fernandez-Prades, 2012. cfernandez(at)cttc.es
*
*
* -------------------------------------------------------------------------
*
* Copyright (C) 2010-2015 (see AUTHORS file for a list of contributors)
*
* GNSS-SDR is a software defined Global Navigation
* Satellite Systems receiver
*
* This file is part of GNSS-SDR.
*
* GNSS-SDR is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GNSS-SDR is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
*
* -------------------------------------------------------------------------
*/
#include "string_converter.h"
TEST(String_Converter_Test, StringToBool)
{
std::unique_ptr<StringConverter> converter(new StringConverter());
bool conversion_result = converter->convert("false", true);
bool expected_false = false;
EXPECT_EQ(expected_false, conversion_result);
}
TEST(String_Converter_Test, StringToSizeT)
{
// Example using a raw pointer
StringConverter* converter;
converter = new StringConverter();
size_t conversion_result = converter->convert("8", 1);
unsigned int expected8 = 8;
EXPECT_EQ(expected8, conversion_result);
delete converter;
}
TEST(String_Converter_Test, StringToBoolFail)
{
std::unique_ptr<StringConverter> converter(new StringConverter());
bool conversion_result = converter->convert("lse", true);
bool expected_true = true;
EXPECT_EQ(expected_true, conversion_result);
}
TEST(String_Converter_Test, StringToSizeTFail)
{
std::unique_ptr<StringConverter> converter(new StringConverter());
size_t conversion_result = converter->convert("false", 1);
unsigned int expected1 = 1;
EXPECT_EQ(expected1, conversion_result);
}