aboutsummaryrefslogtreecommitdiffstats
path: root/src/util_ut.cpp
blob: ccd9fce75dbb768c5c5f4d09fb068d66c4ff4dcd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include "util.h"
#include <gtest/gtest.h>

#include <vector>


TEST(Util, SwapArrayTest) {

    TFloat arr[8] = { 0, 1, 2, 3, 4, 5, 6, 7 };
    SwapArray(arr, 8);
    for (size_t i = 0; i < 8; ++i) {
        EXPECT_NEAR((TFloat)i, arr[7-i], 0.000000000001);
    }
}

TEST(Util, GetFirstSetBitTest) {
    EXPECT_EQ(1, GetFirstSetBit(2));
    EXPECT_EQ(1, GetFirstSetBit(3));
    EXPECT_EQ(2, GetFirstSetBit(4));
    EXPECT_EQ(2, GetFirstSetBit(5));
    EXPECT_EQ(2, GetFirstSetBit(6));
    EXPECT_EQ(2, GetFirstSetBit(7));
    EXPECT_EQ(3, GetFirstSetBit(8));
    EXPECT_EQ(3, GetFirstSetBit(9));
    EXPECT_EQ(3, GetFirstSetBit(10));
}