forked from organicmaps/organicmaps
Updated url generator unit test
This commit is contained in:
parent
5cdfdf8e2d
commit
fcb35bbceb
1 changed files with 4 additions and 1 deletions
|
@ -7,7 +7,6 @@
|
|||
void VectorContains(vector<string> & v, string const & s)
|
||||
{
|
||||
vector<string>::iterator found = find(v.begin(), v.end(), s);
|
||||
std::cout << s << endl;
|
||||
TEST(found != v.end(), (s, "was not found in", v));
|
||||
v.erase(found);
|
||||
}
|
||||
|
@ -38,4 +37,8 @@ UNIT_TEST(UrlGenerator)
|
|||
for (size_t i = 0; i < count; ++i)
|
||||
VectorContains(second, g.PopNextUrl());
|
||||
}
|
||||
{
|
||||
for (size_t i = 0; i < 10; ++i)
|
||||
TEST_EQUAL(g.PopNextUrl(), string(), ());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue