Files
comaps/geometry/geometry_tests/vector_test.cpp
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

44 lines
853 B
C++

#include "testing/testing.hpp"
#include "geometry/avg_vector.hpp"
namespace
{
template <class T, size_t N>
bool EqualArrays(T (&a1)[N], T (&a2)[N])
{
for (size_t i = 0; i < N; ++i)
{
if (!base::AlmostEqualULPs(a1[i], a2[i]))
return false;
}
return true;
}
} // namespace
UNIT_TEST(AvgVector_Smoke)
{
math::AvgVector<double, 3> holder(3);
double ethalon1[] = { 5, 5, 5 };
double ethalon2[] = { 5.5, 5.5, 5.5 };
double ethalon3[] = { 6, 6, 6 };
double arr1[] = { 5, 5, 5 };
double arr2[] = { 6, 6, 6 };
double arr3[] = { 5, 5, 5 };
double arr4[] = { 6, 6, 6 };
holder.Next(arr1);
TEST(EqualArrays(arr1, ethalon1), ());
holder.Next(arr2);
TEST(EqualArrays(arr2, ethalon2), ());
holder.Next(arr3);
TEST(EqualArrays(arr3, ethalon1), ());
holder.Next(arr4);
TEST(EqualArrays(arr4, ethalon3), ());
}