aboutsummaryrefslogtreecommitdiffstats
path: root/juniper/src/test/SrcTestSuite.cpp
blob: 857bd958547ab2ac0025dac5530f1db09098c6e4 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "testenv.h"
#include "mcandTest.h"
#include "queryparserTest.h"
#include "matchobjectTest.h"
#include "auxTest.h"
#include <vespa/vespalib/testkit/testapp.h>
#include <vespa/fastlib/testsuite/suite.h>
/**
 * The SrcTestSuite class runs all the unit tests for the src module.
 *
 * @author Knut Omang
 */
class SrcTestSuite : public Suite {

public:
    SrcTestSuite();
};

SrcTestSuite::SrcTestSuite() :
    Suite("SrcTestSuite", &std::cout)
{
    // All tests for this module
    AddTest(new MatchCandidateTest());
    AddTest(new MatchObjectTest());
    AddTest(new QueryParserTest());
    AddTest(new AuxTest());
}

/**
 * The SrcTestSuiteApp class holds the main body for running the
 * SrcTestSuite class.
 *
 * @author Knut Omang
 */
class SrcTestSuiteApp : public vespalib::TestApp {
public:
    int Main() override;
};

int SrcTestSuiteApp::Main() {
    juniper::TestEnv te(this, TEST_PATH("../rpclient/testclient.rc").c_str());
    SrcTestSuite suite;
    suite.Run();
    long failures = suite.Report();
    suite.Free();
    return (int)failures;
}

FASTOS_MAIN(SrcTestSuiteApp);