| 34 | } |
| 35 | |
| 36 | TEST(test_arbitrator, FirstSendReceiveInt) |
| 37 | { |
| 38 | for (int i = 0; i < number; i++) |
| 39 | { |
| 40 | firstSendInt(i); |
| 41 | } |
| 42 | for (int i = number - 1; i >= 0; i--) |
| 43 | { |
| 44 | int b = firstReceiveInt(); |
| 45 | EXPECT_EQ(i, b); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | TEST(test_arbitrator, FirstSendReceiveInt2) |
| 50 | { |
nothing calls this directly
no test coverage detected