Poco 1.9.1 assert true (#2255)

* Rename assert by assertTrue

* Update submodules

* Missing assertTrue

* Rename poco_assertTrue to poco_assert

* Rename poco_assertTrue to poco_assert
This commit is contained in:
zosrothko
2018-03-29 19:12:54 +02:00
committed by Aleksandar Fabijanic
parent 5a1bf5eb4a
commit 960ecb38f0
232 changed files with 16274 additions and 16265 deletions

View File

@@ -51,7 +51,7 @@ void HTTPStreamFactoryTest::testNoRedirect()
#endif // POCO_ENABLE_CPP11
std::ostringstream ostr;
StreamCopier::copyStream(*pStr.get(), ostr);
assert (ostr.str() == HTTPTestServer::LARGE_BODY);
assertTrue (ostr.str() == HTTPTestServer::LARGE_BODY);
}
@@ -68,7 +68,7 @@ void HTTPStreamFactoryTest::testEmptyPath()
#endif // POCO_ENABLE_CPP11
std::ostringstream ostr;
StreamCopier::copyStream(*pStr.get(), ostr);
assert (ostr.str() == HTTPTestServer::SMALL_BODY);
assertTrue (ostr.str() == HTTPTestServer::SMALL_BODY);
}
@@ -86,7 +86,7 @@ void HTTPStreamFactoryTest::testRedirect()
#endif // POCO_ENABLE_CPP11
std::ostringstream ostr;
StreamCopier::copyStream(*pStr.get(), ostr);
assert (ostr.str() == HTTPTestServer::LARGE_BODY);
assertTrue (ostr.str() == HTTPTestServer::LARGE_BODY);
}
@@ -102,7 +102,7 @@ void HTTPStreamFactoryTest::testProxy()
#endif // POCO_ENABLE_CPP11
std::ostringstream ostr;
StreamCopier::copyStream(*pStr.get(), ostr);
assert (ostr.str() == HTTPTestServer::LARGE_BODY);
assertTrue (ostr.str() == HTTPTestServer::LARGE_BODY);
}