aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/tests/request_sink/request_sink_test.cpp
blob: 23560f0924398da1cdeab9a3edbbb3b1dfc532c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
#include <vespa/vespalib/testkit/testapp.h>
#include <vbench/test/all.h>

using namespace vbench;

TEST_F("put a request into the sink, where does it go, nobody cares", RequestSink()) {
    f1.handle(Request::UP(new Request()));
}

TEST_MAIN() { TEST_RUN_ALL(); }