| 448 | } |
| 449 | |
| 450 | SeatData* ODClientTest::getLocalSeat() const |
| 451 | { |
| 452 | if(mLocalPlayerIndex >= mPlayers.size()) |
| 453 | { |
| 454 | BOOST_CHECK(false); |
| 455 | return nullptr; |
| 456 | } |
| 457 | |
| 458 | if(mPlayers[mLocalPlayerIndex].mSeat == nullptr) |
| 459 | { |
| 460 | BOOST_CHECK(false); |
| 461 | return nullptr; |
| 462 | } |
| 463 | |
| 464 | return mPlayers[mLocalPlayerIndex].mSeat; |
| 465 | } |
| 466 | |
| 467 | void ODClientTest::runFor(int32_t timeInMillis) |
| 468 | { |
no outgoing calls
no test coverage detected