xtd
1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
tunit_config_main.cpp
Shows how to use TUNIT_CONFIG_MAIN define to generate automatically entry point.
#define TUNIT_CONFIG_MAIN
#include <xtd/xtd.tunit>
using namespace
xtd
;
using namespace
xtd::tunit
;
namespace
unit_tests {
// The class test must be declared with test_class_ helper.
class
test_class_(test) {
void
test_method_
(test_case1) {
auto
s =
string
{
"Hello"
};
assert::is_true
(s ==
"Hello"
);
}
};
}
// This code can produce the following output :
//
// Start 1 test from 1 test case
// Run tests:
// SUCCEED unit_tests::test.test_case1 (0 ms total)
//
// Test results:
// SUCCEED 1 test.
// End 1 test from 1 test case ran. (0 ms total)
xtd::tunit::assert::is_true
static void is_true(bool condition, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Asserts that a condition is true.
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
xtd
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition
abstract_object.hpp:8
Generated on
for xtd by
Gammasoft
. All rights reserved.