Repo created
This commit is contained in:
parent
4af19165ec
commit
68073add76
12458 changed files with 12350765 additions and 2 deletions
33
libs/platform/platform_tests/country_file_tests.cpp
Normal file
33
libs/platform/platform_tests/country_file_tests.cpp
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
#include "testing/testing.hpp"
|
||||
|
||||
#include "defines.hpp"
|
||||
|
||||
#include "platform/country_file.hpp"
|
||||
#include "platform/mwm_version.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace platform
|
||||
{
|
||||
UNIT_TEST(CountryFile_Smoke)
|
||||
{
|
||||
{
|
||||
CountryFile cf("One");
|
||||
TEST_EQUAL("One", cf.GetName(), ());
|
||||
auto 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(), ());
|
||||
auto 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue