| 43 | } |
| 44 | |
| 45 | std::string GoalMineNGold::getSuccessMessage(const Seat &s) |
| 46 | { |
| 47 | std::stringstream tempSS; |
| 48 | tempSS << "You have mined more than " << mGoldToMine << " gold coins."; |
| 49 | return tempSS.str(); |
| 50 | } |
| 51 | |
| 52 | std::string GoalMineNGold::getFailedMessage(const Seat &s) |
| 53 | { |
no outgoing calls
no test coverage detected