| 225 | } |
| 226 | |
| 227 | TEST_CASE(loop_test1) |
| 228 | { |
| 229 | auto p = create_program(); |
| 230 | auto ress = run_prog(p, 10, true, 1); |
| 231 | std::vector<int64_t> gold_last = {19}; |
| 232 | EXPECT(ress.front() == gold_last); |
| 233 | std::vector<int64_t> gold_concat = {4, 8, 13, 19, 0, 0, 0, 0, 0, 0}; |
| 234 | EXPECT(ress.back() == gold_concat); |
| 235 | } |
| 236 | |
| 237 | TEST_CASE(loop_test2) |
| 238 | { |
nothing calls this directly
no test coverage detected