| 50 | } |
| 51 | |
| 52 | static inline bool AreBoxesEqual(od::BoundingBox& b1, od::BoundingBox& b2) |
| 53 | { |
| 54 | return (b1.GetX() == b2.GetX() && b1.GetY() == b2.GetY() && |
| 55 | b1.GetWidth() == b2.GetWidth() && b1.GetHeight() == b2.GetHeight()); |
| 56 | } |
| 57 | |
| 58 | TEST_CASE("BoundingBoxTest_GetValidBoundingBox") |
| 59 | { |
no test coverage detected