mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-12-05 16:18:06 +00:00
Remove build and data folders, move tests and utils to the base of the source tree
This commit is contained in:
59
tests/unit-tests/control-plane/string_converter_test.cc
Normal file
59
tests/unit-tests/control-plane/string_converter_test.cc
Normal file
@@ -0,0 +1,59 @@
|
||||
/*!
|
||||
* \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
|
||||
*
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
*
|
||||
* GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
||||
* This file is part of GNSS-SDR.
|
||||
*
|
||||
* Copyright (C) 2010-2020 (see AUTHORS file for a list of contributors)
|
||||
* SPDX-License-Identifier: GPL-3.0-or-later
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "gnss_sdr_make_unique.h"
|
||||
#include "string_converter.h"
|
||||
|
||||
|
||||
TEST(StringConverterTest, StringToBool)
|
||||
{
|
||||
auto converter = std::make_unique<StringConverter>();
|
||||
bool conversion_result = converter->convert("false", true);
|
||||
bool expected_false = false;
|
||||
EXPECT_EQ(expected_false, conversion_result);
|
||||
}
|
||||
|
||||
|
||||
TEST(StringConverterTest, 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(StringConverterTest, StringToBoolFail)
|
||||
{
|
||||
auto converter = std::make_unique<StringConverter>();
|
||||
bool conversion_result = converter->convert("lse", true);
|
||||
bool expected_true = true;
|
||||
EXPECT_EQ(expected_true, conversion_result);
|
||||
}
|
||||
|
||||
|
||||
TEST(StringConverterTest, StringToSizeTFail)
|
||||
{
|
||||
auto converter = std::make_unique<StringConverter>();
|
||||
size_t conversion_result = converter->convert("false", 1);
|
||||
unsigned int expected1 = 1;
|
||||
EXPECT_EQ(expected1, conversion_result);
|
||||
}
|
||||
Reference in New Issue
Block a user