| 120 | } |
| 121 | |
| 122 | int main() { |
| 123 | bool passed = true; |
| 124 | passed &= test_roll({3, 7, 4, 2}, {1, 0, -1, 0}, false); |
| 125 | passed &= test_roll({37, 42, 59, 2}, {-4, 3, -7, 1}, false); |
| 126 | passed &= test_roll({37, 42, 59, 2}, {-4, 3, -7, 1}, true); |
| 127 | return passed ? 0 : 1; |
| 128 | } |
nothing calls this directly
no test coverage detected