xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
assert.cpp
Shows how to use
xtd::tunit::assert
class.
#include <xtd/xtd.tunit>
namespace
unit_tests {
class
test_class_(test) {
void
test_method_
(test_case1) {
assert::is_true(
true
);
}
void
test_method_
(test_case2) {
assert::is_false(
true
);
}
void
test_method_
(test_case3) {
assert::does_not_throw([] {
throw
index_out_of_range_exception(
"error"
);});
}
};
}
auto
main() ->
int
{
return
console_unit_test().run();
}
// This code can produce the following output :
//
// Start 3 tests from 1 test case
// Run tests:
// SUCCEED unit_tests::test.test_case1 [< 1 ms]
// FAILED unit_tests::test.test_case2 [< 1 ms]
// Expected: false
// But was: true
// Stack Trace: in |---OMITTED---|/assert.cpp:10
// FAILED unit_tests::test.test_case3 [< 1 ms]
// Expected: No Exception to be thrown
// But was: <xtd::index_out_of_range_exception>
// Stack Trace: in |---OMITTED---|/assert.cpp:14
//
// Test results:
// SUCCEED 1 test.
// FAILED 2 tests.
// End 3 tests from 1 test case ran. [0.0006 seconds]
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.