mirror of
https://github.com/boostorg/uuid.git
synced 2026-01-19 04:42:16 +00:00
24 lines
864 B
C++
24 lines
864 B
C++
// Copyright 2025 Peter Dimov
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// https://www.boost.org/LICENSE_1_0.txt
|
|
|
|
#include <boost/uuid/constants.hpp>
|
|
#include <boost/uuid/uuid.hpp>
|
|
#include <boost/uuid/uuid_io.hpp>
|
|
#include <boost/uuid/string_generator.hpp>
|
|
#include <boost/core/lightweight_test.hpp>
|
|
|
|
using namespace boost::uuids;
|
|
|
|
int main()
|
|
{
|
|
BOOST_TEST_EQ( ns::dns(), string_generator()("6ba7b810-9dad-11d1-80b4-00c04fd430c8"));
|
|
BOOST_TEST_EQ( ns::url(), string_generator()("6ba7b811-9dad-11d1-80b4-00c04fd430c8"));
|
|
BOOST_TEST_EQ( ns::oid(), string_generator()("6ba7b812-9dad-11d1-80b4-00c04fd430c8"));
|
|
BOOST_TEST_EQ( ns::x500dn(), string_generator()("6ba7b814-9dad-11d1-80b4-00c04fd430c8"));
|
|
|
|
BOOST_TEST_EQ( nil_uuid(), string_generator()("00000000-0000-0000-0000-000000000000"));
|
|
|
|
return boost::report_errors();
|
|
}
|