summaryrefslogtreecommitdiffstats
path: root/vbench/src/tests/request_sink/request_sink_test.cpp
blob: aa281d2a3cbf92ccdc6d4e8a7c4ffa2ab1c3904b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// Copyright 2016 Yahoo Inc. 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(); }