Skip to content

Commit

Permalink
Update test_io.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Jun 12, 2024
1 parent 6796821 commit e0208e5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/test_io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,11 @@ int main()
}

BOOST_TEST(to_string(u1) == std::string("00000000-0000-0000-0000-000000000000"));
BOOST_TEST(to_string(u2) == std::string("00010203-0405-0607-0809-0a0b0c0d0e0f"));
BOOST_TEST(to_string(u3) == std::string("12345678-90ab-cdef-1234-567890abcdef"));

BOOST_TEST(to_wstring(u1) == std::wstring(L"00000000-0000-0000-0000-000000000000"));
BOOST_TEST(to_wstring(u2) == std::wstring(L"00010203-0405-0607-0809-0a0b0c0d0e0f"));
BOOST_TEST(to_wstring(u3) == std::wstring(L"12345678-90ab-cdef-1234-567890abcdef"));

return boost::report_errors();
Expand Down

0 comments on commit e0208e5

Please sign in to comment.