Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1689)

Unified Diff: base/bit_cast_unittest.cc

Issue 1925683002: Add simple bit_cast unittests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bit_cast.h, fix windows test compile Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/bit_cast.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/bit_cast_unittest.cc
diff --git a/base/bit_cast_unittest.cc b/base/bit_cast_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..757b0c65feb8941e64eb1d0b1ee202180c7e3db5
--- /dev/null
+++ b/base/bit_cast_unittest.cc
@@ -0,0 +1,32 @@
+// Copyright (c) 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+
+#include "base/bit_cast.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace base {
+namespace {
+
+TEST(BitCastTest, FloatIntFloat) {
+ float f = 3.1415926f;
+ int i = bit_cast<int32_t>(f);
+ float f2 = bit_cast<float>(i);
+ EXPECT_EQ(f, f2);
+}
+
+struct A {
+ int x;
+};
+
+TEST(BitCastTest, StructureInt) {
+ A a = { 1 };
+ int b = bit_cast<int>(a);
+ EXPECT_EQ(1, b);
+}
+
+
+} // namespace
+} // namespace base
« no previous file with comments | « base/bit_cast.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698