Updated url generator unit test

This commit is contained in:
Alex Zolotarev 2011-10-05 10:40:03 +03:00 committed by Alex Zolotarev
parent 5cdfdf8e2d
commit fcb35bbceb

View file

@ -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(), ());
}
}