Commit bfbb4ad2 authored by Dominik Charousset's avatar Dominik Charousset

Re-organize flow operator unit test suites

parent c03cd963
......@@ -278,27 +278,27 @@ caf_add_component(
dynamic_spawn
error
expected
flow.buffer
flow.concat
flow.concat_map
flow.defer
flow.empty
flow.fail
flow.flat_map
flow.for_each
flow.generation
flow.interval
flow.item_publisher
flow.merge
flow.mixed
flow.never
flow.observe_on
flow.op.buffer
flow.op.cell
flow.op.concat
flow.op.defer
flow.op.empty
flow.op.fail
flow.op.interval
flow.op.mcast
flow.prefix_and_tail
flow.op.merge
flow.op.never
flow.op.prefix_and_tail
flow.op.zip_with
flow.publish
flow.single
flow.zip_with
function_view
handles
hash.fnv
......
......@@ -2,14 +2,15 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.buffer
#define CAF_SUITE flow.op.buffer
#include "caf/flow/observable.hpp"
#include "caf/flow/op/buffer.hpp"
#include "core-test.hpp"
#include "caf/flow/coordinator.hpp"
#include "caf/flow/item_publisher.hpp"
#include "caf/flow/observable.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/observer.hpp"
#include "caf/flow/scoped_coordinator.hpp"
......
......@@ -2,7 +2,7 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.concat
#define CAF_SUITE flow.op.concat
#include "caf/flow/op/concat.hpp"
......
......@@ -2,12 +2,13 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.defer
#define CAF_SUITE flow.op.defer
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/op/defer.hpp"
#include "core-test.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/scoped_coordinator.hpp"
using namespace caf;
......
......@@ -2,12 +2,13 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.empty
#define CAF_SUITE flow.op.empty
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/op/empty.hpp"
#include "core-test.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/scoped_coordinator.hpp"
using namespace caf;
......
......@@ -2,7 +2,7 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.fail
#define CAF_SUITE flow.op.fail
#include "caf/flow/observable_builder.hpp"
......
......@@ -2,12 +2,13 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.interval
#define CAF_SUITE flow.op.interval
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/op/interval.hpp"
#include "core-test.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/scoped_coordinator.hpp"
using namespace std::literals;
......
......@@ -2,7 +2,7 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.merge
#define CAF_SUITE flow.op.merge
#include "caf/flow/op/merge.hpp"
......
......@@ -2,12 +2,13 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.never
#define CAF_SUITE flow.op.never
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/op/never.hpp"
#include "core-test.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/scoped_coordinator.hpp"
using namespace caf;
......
......@@ -4,13 +4,14 @@
#define CAF_SUITE flow.prefix_and_tail
#include "caf/flow/observable.hpp"
#include "caf/flow/op/prefix_and_tail.hpp"
#include "core-test.hpp"
#include <memory>
#include "caf/flow/coordinator.hpp"
#include "caf/flow/observable.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/observer.hpp"
#include "caf/flow/scoped_coordinator.hpp"
......
......@@ -2,12 +2,13 @@
// the main distribution directory for license terms and copyright or visit
// https://github.com/actor-framework/actor-framework/blob/master/LICENSE.
#define CAF_SUITE flow.zip_with
#define CAF_SUITE flow.op.zip_with
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/op/zip_with.hpp"
#include "core-test.hpp"
#include "caf/flow/observable_builder.hpp"
#include "caf/flow/scoped_coordinator.hpp"
using namespace caf;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment