2015-11-18 14:43:51 +11:00
|
|
|
#include "tap.hpp"
|
|
|
|
#include "strongdef.hpp"
|
|
|
|
|
|
|
|
using util::strongdef;
|
|
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
main (void)
|
|
|
|
{
|
|
|
|
util::TAP::logger tap;
|
2015-11-18 14:43:13 +11:00
|
|
|
|
2015-11-18 14:43:51 +11:00
|
|
|
// These tests are less about functional testing, and more about link testing.
|
2015-11-19 15:06:23 +11:00
|
|
|
strongdef<unsigned,void> fortytwo (42u);
|
2015-11-18 14:43:51 +11:00
|
|
|
tap.expect_eq (fortytwo.data, 42u, "raw data equality");
|
|
|
|
tap.expect_eq (fortytwo, 42u, "passthrough equality");
|
|
|
|
|
2015-11-18 14:43:13 +11:00
|
|
|
// Ensure numeric_limits has been specialised. Unknown types are default initialised, so check if we get non-zero for maximum.
|
|
|
|
tap.expect_eq (std::numeric_limits<decltype(fortytwo)>::max (),
|
|
|
|
std::numeric_limits<decltype(fortytwo)::value_type>::max (),
|
|
|
|
"numeric_limits has been specialised");
|
|
|
|
|
2015-11-18 14:43:51 +11:00
|
|
|
return tap.status ();
|
|
|
|
}
|