aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/tests/testapp-debug/debugtest.cpp
blob: 78bf3d69215adcab50993704e6aa172e2963a982 (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
// 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>

using namespace vespalib;

void testDebug() {
    TEST_DEBUG("lhs.out", "rhs.out");
    EXPECT_EQUAL(string("a\n"
                        "b\n"
                        "c\n"),

                string("a\n"
                       "b\n"
                       "c\n"
                       "d\n"));
    EXPECT_EQUAL(string("a\n"
                        "d\n"
                        "b\n"
                        "c\n"),

                 string("a\n"
                        "b\n"
                        "c\n"
                        "d\n"));
    EXPECT_EQUAL(1, 2);
    EXPECT_EQUAL(string("foo"), string("bar"));
}

TEST_MAIN() {
    testDebug();
}