#include "test/u.hpp" namespace { AddTestCase _("tester", [](TestCase &t) { t.expectTrue([]{ return true; }); t.expectFalse([]{ return false; }); t.expectEq([]{ return 42; }, 42); t.expectEq([] { return 10 + 1e-7; }, 10); t.expectEq([] { return 10 + 1e-10; }, 10); }); }