#include <filesystem>
#include <cassert>
#include <string>
#include <type_traits>
#include "count_new.h"
#include "make_string.h"
#include "min_allocator.h"
#include "test_iterators.h"
#include "test_macros.h"
namespace fs = std::filesystem;
MultiStringType input = MKSTR("c:\\foo\\bar");
#ifdef _WIN32
MultiStringType ref = MKSTR("c:/foo/bar");
#else
MultiStringType ref = MKSTR("c:\\foo\\bar");
#endif
int main(int, char**)
{
using namespace fs;
auto const& MS = ref;
const char* value = input;
const path p(value);
{
std::string s = p.generic_string();
assert(s == (const char*)MS);
}
{
#if TEST_STD_VER > 17 && defined(__cpp_char8_t)
ASSERT_SAME_TYPE(decltype(p.generic_u8string()), std::u8string);
std::u8string s = p.generic_u8string();
assert(s == (const char8_t*)MS);
#else
ASSERT_SAME_TYPE(decltype(p.generic_u8string()), std::string);
std::string s = p.generic_u8string();
assert(s == (const char*)MS);
#endif
}
#ifndef TEST_HAS_NO_WIDE_CHARACTERS
{
std::wstring s = p.generic_wstring();
assert(s == (const wchar_t*)MS);
}
#endif
{
std::u16string s = p.generic_u16string();
assert(s == (const char16_t*)MS);
}
{
std::u32string s = p.generic_u32string();
assert(s == (const char32_t*)MS);
}
return 0;
}