forked from organicmaps/organicmaps
uber tests fix
This commit is contained in:
parent
7831163ea0
commit
10b3f62166
1 changed files with 8 additions and 3 deletions
|
@ -250,17 +250,22 @@ UNIT_TEST(Uber_Smoke)
|
|||
|
||||
testing::RunEventLoop();
|
||||
|
||||
TEST_EQUAL(synchronousProducts.size(), productsContainer.size(), ());
|
||||
size_t countOfEqual = 0;
|
||||
|
||||
for (auto const & product : synchronousProducts)
|
||||
{
|
||||
auto const it = find_if(
|
||||
productsContainer.begin(), productsContainer.end(), [&product](uber::Product const & item)
|
||||
productsContainer.begin(), productsContainer.end(),
|
||||
[&product, countOfEqual](uber::Product const & item)
|
||||
{
|
||||
return product.m_productId == item.m_productId && product.m_name == item.m_name &&
|
||||
product.m_price == item.m_price;
|
||||
});
|
||||
|
||||
TEST(it != productsContainer.end(), ());
|
||||
if (it != productsContainer.end())
|
||||
++countOfEqual;
|
||||
}
|
||||
|
||||
// At least 75 percents of products should be equal.
|
||||
TEST_LESS_OR_EQUAL(static_cast<size_t>(synchronousProducts.size() * 0.75), countOfEqual, ());
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue