Files
comaps/libs/geometry/geometry_tests/bounding_box_tests.cpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

34 lines
681 B
C++

#include "testing/testing.hpp"
#include "geometry/bounding_box.hpp"
namespace bounding_box_tests
{
UNIT_TEST(BoundingBox_Smoke)
{
{
m2::BoundingBox bbox;
TEST(!bbox.HasPoint(0, 0), ());
TEST(!bbox.HasPoint(-1, 1), ());
}
{
m2::BoundingBox bbox;
bbox.Add(0, 0);
TEST(bbox.HasPoint(0, 0), ());
TEST(!bbox.HasPoint(1, 0), ());
TEST(!bbox.HasPoint(0, 1), ());
TEST(!bbox.HasPoint(1, 1), ());
TEST(!bbox.HasPoint(0.5, 0.5), ());
bbox.Add(1, 1);
TEST(bbox.HasPoint(1, 0), ());
TEST(bbox.HasPoint(0, 1), ());
TEST(bbox.HasPoint(1, 1), ());
TEST(bbox.HasPoint(0.5, 0.5), ());
}
}
} // namespace bounding_box_tests