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
33
34
35
36
37
38
39
40
41
42
43
// Copyright (C) 2019 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 <cc/element_value.h>
#include <gtest/gtest.h><--- Include file:  not found. Please note: Cppcheck does not need standard library headers to get proper results.

using namespace isc::data;

namespace {

// This test verifies that integer value can be extracted.
TEST(ElementValue, intValue) {
    EXPECT_EQ(5, ElementValue<int>()(Element::create(5)));
    EXPECT_THROW(ElementValue<int>()(Element::create("hola!")),
                 TypeError);
}

// This test verifies that double value can be extracted.
TEST(ElementValue, doubleValue) {<--- syntax error
    EXPECT_EQ(1.4, ElementValue<double>()(Element::create(1.4)));
    EXPECT_THROW(ElementValue<double>()(Element::create("hola!")),
                 TypeError);
}

// This test verifies that boolean value can be extracted.
TEST(ElementValue, boolValue) {
    EXPECT_TRUE(ElementValue<bool>()(Element::create(true)));
    EXPECT_THROW(ElementValue<bool>()(Element::create("hola!")),
                 TypeError);
}

// This test verifies that string value can be extracted.
TEST(ElementValue, stringValue) {
    EXPECT_EQ("hola!", ElementValue<std::string>()(Element::create("hola!")));
    EXPECT_THROW(ElementValue<std::string>()(Element::create(false)),
                 TypeError);
}

}