Shows how to use xtd::tunit::assert class.
#include <xtd/xtd.tunit>
#include <stdexcept>
namespace unit_tests {
class test_class_(test) {
assert::is_true(true);
}
assert::is_false(true);
}
assert::does_not_throw([] {throw std::range_error("error");});
}
};
}
auto main() -> int {
return console_unit_test().run();
}
#define test_method_(method_name)
Add test method to class test.
Definition test_method_attribute.hpp:72