| 70 | bool IsValid() const { return m_valid; } |
| 71 | |
| 72 | bool IsEndPointId(uint32_t pointId) const |
| 73 | { |
| 74 | ASSERT_LESS(pointId, m_junctions.size(), ()); |
| 75 | return pointId == 0 || pointId + 1 == GetPointsCount(); |
| 76 | } |
| 77 | |
| 78 | void SetPassThroughAllowedForTests(bool passThroughAllowed) { m_isPassThroughAllowed = passThroughAllowed; } |
| 79 |
no test coverage detected