mirror of
https://github.com/gabime/spdlog.git
synced 2024-11-15 16:35:45 +08:00
Fixed file_helper::split_by_extenstion and added more tests for it
This commit is contained in:
parent
f695e536dd
commit
8e3f968ba4
@ -108,6 +108,9 @@ TEST_CASE("file_helper_split_by_extenstion", "[file_helper::split_by_extenstion(
|
|||||||
test_split_ext(file_t(".././mylog.txt/xxx"), file_t(".././mylog.txt/xxx"), file_t(""));
|
test_split_ext(file_t(".././mylog.txt/xxx"), file_t(".././mylog.txt/xxx"), file_t(""));
|
||||||
test_split_ext(file_t("/mylog.txt"), file_t("/mylog"), file_t(".txt"));
|
test_split_ext(file_t("/mylog.txt"), file_t("/mylog"), file_t(".txt"));
|
||||||
test_split_ext(file_t("//mylog.txt"), file_t("//mylog"), file_t(".txt"));
|
test_split_ext(file_t("//mylog.txt"), file_t("//mylog"), file_t(".txt"));
|
||||||
|
test_split_ext(file_t(""), file_t(""), file_t(""));
|
||||||
|
test_split_ext(file_t("."), file_t("."), file_t(""));
|
||||||
|
test_split_ext(file_t("..txt"), file_t("."), file_t(".txt"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user