| 126 | } |
| 127 | |
| 128 | void RingBufferTestsFixture::RingBufferEquals::writeDescriptionTo(std::ostream& stream) const |
| 129 | { |
| 130 | auto firstItem = true; |
| 131 | for (auto&& value : m_values) |
| 132 | { |
| 133 | if (firstItem) |
| 134 | firstItem = false; |
| 135 | else |
| 136 | stream << ", "; |
| 137 | |
| 138 | stream << anyToString(value); |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | bool RingBufferTestsFixture::RingBufferEquals::anyEqual(const boost::any& lhs, const boost::any& rhs) |
| 143 | { |
no outgoing calls
no test coverage detected