xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
assert_abort.cpp
Shows how to use
xtd::tunit::assert::abort
method.
#include <xtd/xtd.tunit>
namespace
unit_tests {
class
test_class_(test) {
void
test_method_
(test_case_aborted) {
assert::abort();
assert::is_true(
false
);
}
};
}
auto
main() ->
int
{
return
console_unit_test().run();
}
// This code produces the following output :
//
// Start 1 test from 1 test case
// Run tests:
// ABORTED unit_tests::test.test_case_aborted (0 ms total)
// Test aborted
//
// Test results:
// ABORTED 1 test.
// End 1 test from 1 test case ran. (0 ms total)
test_method_
#define test_method_(method_name)
Add test method to class test.
Definition
test_method_attribute.hpp:72
Generated on
for xtd by
Gammasoft
. All rights reserved.