xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
assume_throws_any.cpp
Shows how to use
xtd::tunit::assume::throws_any
method.
#include <xtd/xtd.tunit>
using namespace
xtd::collections::generic
;
using namespace
xtd::tunit
;
namespace
unit_tests {
class
test_class_(test) {
void
test_method_
(test_case_succeed) {
auto
l =
list
{1, 2, 3, 4};
assume::throws_any
([&] {l[5];});
}
void
test_method_
(test_case_aborted) {
auto
l =
list
{1, 2, 3, 4};
assume::throws_any
([&] {l[2];});
}
};
}
auto
main() ->
int
{
return
console_unit_test
().
run
();
}
// This code produces the following output :
//
// Start 2 tests from 1 test case
// Run tests:
// SUCCEED unit_tests::test.test_case_succeed (0 ms total)
// ABORTED test.test_case_aborted (0 ms total)
// Expected: <exception>
// But was: <nothing>
// Stack Trace: in |---OMITTED---|/assume_throws_any.cpp:15
//
// Test results:
// SUCCEED 1 test.
// ABORTED 1 test.
// End 2 tests from 1 test case ran. (0 ms total)
xtd::collections::generic::list
Represents a strongly typed list of objects that can be accessed by index. Provides methods to search...
Definition
list.hpp:80
xtd::tunit::assume::throws_any
static auto throws_any(const std::function< void()> &statement, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current()) -> void
Assumes that the staement does not throw an exception.
xtd::tunit::console_unit_test
The console_unit_test class is console unit test interface.
Definition
console_unit_test.hpp:23
xtd::tunit::console_unit_test::run
auto run() noexcept -> xtd::int32
Runs all tests in this unit_test object and prints the result.
test_method_
#define test_method_(method_name)
Add test method to class test.
Definition
test_method_attribute.hpp:72
xtd::collections::generic
The xtd::collections::generic namespace contains interfaces and classes that define generic collectio...
Definition
comparer.hpp:16
xtd::tunit
The tunit namespace contains a unit test library.
Definition
abort_error.hpp:10
Generated on
for xtd by
Gammasoft
. All rights reserved.