Files
comaps/libs/platform/platform_tests/country_file_tests.cpp
Konstantin Pastbin bfffa1fff4 Format all C++ and Java code via clang-format
Signed-off-by: Konstantin Pastbin <konstantin.pastbin@gmail.com>
2025-08-17 14:32:37 +07:00

36 lines
814 B
C++

#include "testing/testing.hpp"
#include "defines.hpp"
#include "platform/country_file.hpp"
#include "platform/mwm_version.hpp"
#include <string>
using namespace std;
namespace platform
{
UNIT_TEST(CountryFile_Smoke)
{
{
CountryFile cf("One");
TEST_EQUAL("One", cf.GetName(), ());
string const mapFileName = cf.GetFileName(MapFileType::Map);
TEST_EQUAL("One" DATA_FILE_EXTENSION, mapFileName, ());
TEST_EQUAL(0, cf.GetRemoteSize(), ());
}
{
CountryFile cf("Three", 666, "xxxSHAxxx");
TEST_EQUAL("Three", cf.GetName(), ());
string const mapFileName = cf.GetFileName(MapFileType::Map);
TEST_EQUAL("Three" DATA_FILE_EXTENSION, mapFileName, ());
TEST_EQUAL(666, cf.GetRemoteSize(), ());
TEST_EQUAL("xxxSHAxxx", cf.GetSha1(), ());
}
}
} // namespace platform