added include

This commit is contained in:
Olga Khlopkova 2020-05-28 16:20:51 +03:00 committed by Vladimir Byko-Ianko
parent d8d99e6aac
commit f93d0dbfcf
2 changed files with 3 additions and 1 deletions

View file

@ -43,6 +43,7 @@ using TransitId = uint32_t;
class IdGenerator
{
public:
IdGenerator() = default;
explicit IdGenerator(std::string const & idMappingPath);
void Save();

View file

@ -8,6 +8,7 @@
#include "base/assert.hpp"
#include "base/file_name_utils.hpp"
#include "base/string_utils.hpp"
#include <algorithm>
#include <string>
@ -83,7 +84,7 @@ public:
TEST_EQUAL(m_globalFeed.m_gates.m_data.size(), 0, ());
TEST_EQUAL(m_globalFeed.m_transfers.m_data.size(), 0, ());
TEST_EQUAL(m_globalFeed.m_edges.m_data.size(), 10091, ());
TEST_EQUAL(m_globalFeed.m_edgesTransfer.m_data.size(), 0, ());
TEST_EQUAL(m_globalFeed.m_edgesTransfers.m_data.size(), 0, ());
}
private: