summaryrefslogtreecommitdiff
path: root/Tests/AK/TestBitCast.cpp
blob: baf270f9b69675c4bc23ab7d01789f86b95dc27a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibTest/TestCase.h>

#include <AK/BitCast.h>

template<typename A, typename B>
void check_cast_both_ways(const A& a, const B& b)
{
    EXPECT_EQ((bit_cast<A, B>(b)), a);
    EXPECT_EQ((bit_cast<B, A>(a)), b);
}

TEST_CASE(double_int_conversion)
{
    check_cast_both_ways(static_cast<u64>(0), 0.0);
    check_cast_both_ways(static_cast<u64>(1) << 63, -0.0);
    check_cast_both_ways(static_cast<u64>(0x4172f58bc0000000), 19880124.0);
}