xtd 0.2.0
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>
#include <string>
using namespace std;
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 test.test_case1 (0 ms total)
//
// Test results:
// SUCCEED 1 test.
// End 1 test from 1 test case ran. (0 ms total)
#define test_method_(method_name)
Add test method to class test.
Definition test_method_attribute.h:89
The tunit namespace contains a unit test library.
Definition abort_error.h:10