Shows how to use xtd::tunit::assert::abort method.
#include <xtd/xtd.tunit>
namespace unit_tests {
class test_class_(test) {
assert::abort();
assert::is_true(false);
}
};
}
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