forked from organicmaps/organicmaps
[indexer] Add default categories load test.
This commit is contained in:
parent
71107df2bc
commit
bef147b46f
1 changed files with 17 additions and 0 deletions
|
@ -140,6 +140,23 @@ UNIT_TEST(CategoriesHolder_DisplayedNameSmoke)
|
|||
}
|
||||
}
|
||||
|
||||
UNIT_TEST(CategoriesHolder_LoadDefault)
|
||||
{
|
||||
classificator::Load();
|
||||
|
||||
uint32_t counter = 0;
|
||||
auto const count = [&counter](CategoriesHolder::Category const &) { ++counter; };
|
||||
|
||||
auto const & categoriesHolder = GetDefaultCategories();
|
||||
categoriesHolder.ForEachCategory(count);
|
||||
TEST_GREATER(counter, 0, ());
|
||||
|
||||
counter = 0;
|
||||
auto const & cuisineCategoriesHolder = GetDefaultCuisineCategories();
|
||||
cuisineCategoriesHolder.ForEachCategory(count);
|
||||
TEST_GREATER(counter, 0, ());
|
||||
}
|
||||
|
||||
UNIT_TEST(CategoriesHolder_DisplayedName)
|
||||
{
|
||||
char const kCategories[] =
|
||||
|
|
Loading…
Add table
Reference in a new issue