aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/box/box_test.cpp
blob: b45aa0c3a30642102e0c0c9455ea94f94efb2073 (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
27
28
29
30
31
32
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/test_kit.h>
#include <vespa/vespalib/util/box.h>

using namespace vespalib;

void checkValues(const std::vector<int> &values, size_t n) {
    ASSERT_EQUAL(n, values.size());
    for (size_t i = 0; i < n; ++i) {
        EXPECT_EQUAL(int(10 + (10 * i)), values[i]);
    }
}

TEST("require that boxes can be created and converted to vector") {
    Box<int> box;
    box.add(10).add(20).add(30);
    checkValues(box, 3);
}

TEST("require that boxes can be created in place") {
    checkValues(Box<int>().add(10).add(20).add(30), 3);
}

TEST("require that make_box works") {
    checkValues(make_box(10), 1);
    checkValues(make_box(10, 20), 2);
    checkValues(make_box(10, 20, 30), 3);
    checkValues(make_box(10, 20, 30, 40), 4);
    checkValues(make_box(10, 20, 30, 40, 50), 5);
}

TEST_MAIN() { TEST_RUN_ALL(); }