| 331 | |
| 332 | template< class T, class... Context > |
| 333 | static |
| 334 | void |
| 335 | testValueCtor( T const& t, Context const& ... ctx ) |
| 336 | { |
| 337 | BOOST_TEST( |
| 338 | serialize(value_from( t, ctx... )) == serialize(value(t)) ); |
| 339 | } |
| 340 | |
| 341 | } // namespace |
| 342 |
nothing calls this directly
no test coverage detected