forked from organicmaps/organicmaps
[coding_test] Fixed coding tests.
This commit is contained in:
parent
c0163b8b41
commit
66f49ace41
1 changed files with 2 additions and 1 deletions
|
@ -33,12 +33,13 @@ public:
|
|||
|
||||
private:
|
||||
|
||||
void AddTestValue(string const & key, string const & value)
|
||||
bool AddTestValue(string const & key, string const & value)
|
||||
{
|
||||
TEST(!m_keyValuePairs.empty(), ("Failed for uri = ", m_uri, "Passed KV = ", key, value));
|
||||
TEST_EQUAL(m_keyValuePairs.front().first, key, ());
|
||||
TEST_EQUAL(m_keyValuePairs.front().second, value, ());
|
||||
m_keyValuePairs.pop();
|
||||
return true;
|
||||
}
|
||||
|
||||
string m_uri, m_scheme, m_path;
|
||||
|
|
Loading…
Add table
Reference in a new issue