xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
assume_is_empty.cpp
Shows how to use
xtd::tunit::assume::is_empty
method.
#include <xtd/xtd.tunit>
using namespace
xtd::tunit
;
namespace
unit_tests {
class
test_class_(test) {
void
test_method_
(test_case_collection_succeed) {
assume::is_empty
(std::initializer_list<int> {});
}
void
test_method_
(test_case_collection_aborted) {
assume::is_empty
({0, 1, 2, 3});
}
void
test_method_
(test_case_string_succeed) {
assume::is_empty
(
""
);
}
void
test_method_
(test_case_string_aborted) {
assume::is_empty
(
"string"
);
}
};
}
auto
main() ->
int
{
return
console_unit_test
().
run
();
}
// This code produces the following output :
//
// Start 4 tests from 1 test case
// Run tests:
// SUCCEED unit_tests::test.test_case_collection_succeed (0 ms total)
// ABORTED test.test_case_collection_aborted (0 ms total)
// Expected: collection <empty>
// But was: < 0, 1, 2, 3 >
// Stack Trace: in |---OMITTED---|/assume_is_empty.cpp:13
// SUCCEED unit_tests::test.test_case_string_succeed (0 ms total)
// ABORTED test.test_case_string_aborted (0 ms total)
// Expected: collection <empty>
// But was: < 's', 't', 'r', 'i', 'n', 'g' >
// Stack Trace: in |---OMITTED---|/assume_is_empty.cpp:21
//
// Test results:
// SUCCEED 2 tests.
// ABORTED 2 tests.
// End 4 tests from 1 test case ran. (0 ms total)
xtd::tunit::assume::is_empty
static void is_empty(const value_t &value, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Assumes that collection contains an item.
Definition
assume.hpp:360
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
int32 run() noexcept
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::tunit
The tunit namespace contains a unit test library.
Definition
abort_error.hpp:10
Generated on
for xtd by
Gammasoft
. All rights reserved.