aboutsummaryrefslogtreecommitdiffstats
path: root/vespalib/src/vespa/vespalib/testkit/testapp.cpp
blob: 6998a6dad17801308e788c70ae0474e5d1f4cf04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "testapp.h"

namespace vespalib {

int
TestApp::Entry(int argc, char **argv)
{
    _argc = argc;
    _argv = argv;
    return Main();
}

TestApp::~TestApp() = default;

} // namespace vespalib