| 27 | namespace ParallelStreamTest { |
| 28 | |
| 29 | struct TestValue { |
| 30 | int x; |
| 31 | TestValue(int x) : x(x) {} |
| 32 | int expectedSize() const { return sizeof(int); } |
| 33 | }; |
| 34 | |
| 35 | ACTOR static Future<Void> produce(ParallelStream<ParallelStreamTest::TestValue>::Fragment* fragment, |
| 36 | ParallelStreamTest::TestValue value) { |
no outgoing calls
no test coverage detected