forked from organicmaps/organicmaps
deleted second assert, added test case
Signed-off-by: IsiGebauer <isigebauer0@gmail.com> Signed-off-by: IsiGebauer <emanuel.gebauer0@gmail.com>
This commit is contained in:
parent
9fbe9540db
commit
2089627bdc
2 changed files with 2 additions and 1 deletions
|
@ -81,6 +81,8 @@ UNIT_TEST(FilePath_Join)
|
|||
TEST_EQUAL("omim/strings.txt", base::JoinPath("omim/", "strings.txt"), ());
|
||||
TEST_EQUAL("../../omim/strings.txt", base::JoinPath("..", "..", "omim", "strings.txt"), ());
|
||||
TEST_EQUAL("../../omim/strings.txt", base::JoinPath("../", "..", "omim/", "strings.txt"), ());
|
||||
TEST_EQUAL("omim/strings.txt", base::JoinPath("", "omim/", "strings.txt"), ());
|
||||
TEST_EQUAL("omim/strings.txt", base::JoinPath("", "","omim/", "strings.txt"), ());
|
||||
}
|
||||
|
||||
#endif // OMIM_OS_WINDOWS
|
||||
|
|
|
@ -55,7 +55,6 @@ std::string JoinPath(std::string const & folder, Args &&... args)
|
|||
template <typename... Args>
|
||||
std::string JoinPath(std::string const & dir, std::string const & fileOrDir, Args &&... args)
|
||||
{
|
||||
ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty"));
|
||||
return impl::JoinPath(dir, fileOrDir, std::forward<Args>(args)...);
|
||||
}
|
||||
} // namespace base
|
||||
|
|
Loading…
Add table
Reference in a new issue