uhd/host/tests/narrow_cast_test.cpp
Martin Braun ae5211d71d uhd: Update license headers
All copyright is now attributed to "Ettus Research, a National
Instruments company".

SPDX headers were also updated to latest version 3.0.
2018-02-19 16:54:52 -08:00

21 lines
549 B
C++

//
// Copyright 2018 Ettus Research, a National Instruments Company
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
#include <uhd/exception.hpp>
#include <../lib/include/uhdlib/utils/narrow.hpp>
#include <boost/test/unit_test.hpp>
#include <iostream>
using namespace uhd;
BOOST_AUTO_TEST_CASE(test_narrow){
uint16_t x = 5;
uint8_t y = narrow_cast<uint8_t>(x);
BOOST_CHECK_EQUAL(x, y);
BOOST_CHECK_THROW(narrow<uint8_t>(uint16_t(1<<10)), narrowing_error);
BOOST_CHECK_THROW(narrow<uint8_t>(int8_t(-1)), narrowing_error);
}