aboutsummaryrefslogtreecommitdiffstats
path: root/host/tests/narrow_cast_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/tests/narrow_cast_test.cpp')
-rw-r--r--host/tests/narrow_cast_test.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/host/tests/narrow_cast_test.cpp b/host/tests/narrow_cast_test.cpp
new file mode 100644
index 000000000..2f784bfe3
--- /dev/null
+++ b/host/tests/narrow_cast_test.cpp
@@ -0,0 +1,21 @@
+//
+// Copyright 2018 Ettus Research, a National Instruments Company
+//
+// SPDX-License-Identifier: GPL-3.0
+//
+
+#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);
+}