blob: a2dc6656efaab0a54fdc8a223aa6aea5a77586a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <iostream>
#include <seastar/core/future.hh>
#include <seastar/testing/test_case.hh>
namespace sr = seastar;
SEASTAR_TEST_CASE(greeting) {
return sr::make_ready_future<>().then([] {
BOOST_REQUIRE(true);
std::cout << "\"Hello\" from the Seastar CMake testing consumer!\n";
});
}
|