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
27
28
29
30
31
32
// Copyright (C) 2019,2021 Internet Systems Consortium, Inc. ("ISC")
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at http://mozilla.org/MPL/2.0/.

#include <config.h>

#include <util/doubles.h>

#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace std;
using namespace isc;
using namespace isc::util;

namespace {

// Exercises isc::util::areDoublesEquivalent().
TEST(Doubles, areDoublesEquivalent) {
    std::vector<uint8_t> data;

    // Default tolerance is 0.000001
    EXPECT_TRUE(areDoublesEquivalent( 1.0000000, 1.0000005));
    EXPECT_FALSE(areDoublesEquivalent(1.0000000, 1.000005));

    // Check custom tolerance.
    EXPECT_TRUE(areDoublesEquivalent( 1.000, 1.005, 0.01));
    EXPECT_FALSE(areDoublesEquivalent(1.000, 1.005, 0.001));
}

}