| 140 | }; |
| 141 | |
| 142 | TEST_F(TestUnionNode, TestNonEmpty) { |
| 143 | for (bool parallel : {false, true}) { |
| 144 | for (int64_t num_input_nodes : {1, 2, 4, 8}) { |
| 145 | this->CheckUnionExecNode(num_input_nodes, kNumBatches, parallel); |
| 146 | } |
| 147 | } |
| 148 | } |
| 149 | TEST_F(TestUnionNode, TestWithAnEmptyBatch) { |
| 150 | this->CheckUnionExecNode(/*num_input_nodes*/ 2, /*num_batches=*/0, /*parallel=*/false); |
| 151 | } |
nothing calls this directly
no test coverage detected