mirror of
https://github.com/boostorg/core.git
synced 2025-05-11 13:13:55 +00:00
37 lines
729 B
C++
37 lines
729 B
C++
/*
|
|
Copyright 2019 Glen Joseph Fernandes
|
|
(glenjofe@gmail.com)
|
|
|
|
Distributed under the Boost Software License, Version 1.0.
|
|
(http://www.boost.org/LICENSE_1_0.txt)
|
|
*/
|
|
#include <boost/core/nvp.hpp>
|
|
#include <boost/core/lightweight_test_trait.hpp>
|
|
|
|
void test()
|
|
{
|
|
const char* n = "name";
|
|
int v = 1;
|
|
boost::nvp<int> p(n, v);
|
|
BOOST_TEST_EQ(p.name(), n);
|
|
BOOST_TEST_EQ(p.value(), 1);
|
|
BOOST_TEST_EQ(&p.value(), &v);
|
|
}
|
|
|
|
void test_factory()
|
|
{
|
|
const char* n = "name";
|
|
int v = 1;
|
|
boost::nvp<int> p = boost::make_nvp(n, v);
|
|
BOOST_TEST_EQ(p.name(), n);
|
|
BOOST_TEST_EQ(p.value(), 1);
|
|
BOOST_TEST_EQ(&p.value(), &v);
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test();
|
|
test_factory();
|
|
return boost::report_errors();
|
|
}
|