xtd 0.2.0
many_valids_and_asserts.cpp

Shows how to use xtd::tunit::valid and xtd::tunit::assert classes.

#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, World!"};
valid::are_equal(13, s.size());
}
};
}
auto main() -> int {
return console_unit_test().run();
}
// This code can produce the following output :
//
// Start 1 test from 1 test case
// Run tests:
// FAILED unit_tests::test.test_case1 (0 ms total)
// Expected: string starting with "¡Hola,"
// But was: "Hello, World!"
// Stack Trace: in |---OMITTED---|/many_valids_and_asserts.cpp:15
// FAILED unit_tests::test.test_case1 (0 ms total)
// Expected: string ending with " mundo!"
// But was: "Hello, World!"
// Stack Trace: in |---OMITTED---|/many_valids_and_asserts.cpp:16
// FAILED unit_tests::test.test_case1 (0 ms total)
// Expected: collection containing a
// But was: < 'H', 'e', 'l', 'l', 'o', ',', ' ', 'W', 'o', 'r', 'l', 'd', '!' >
// Stack Trace: in |---OMITTED---|/many_valids_and_asserts.cpp:17
//
// Test results:
// FAILED 1 test.
// End 1 test from 1 test case ran. (0 ms total)
static void contains(const item_t &item, const collection_t &collection, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Asserts that collection contains an item.
Definition assert.hpp:279
The console_unit_test class is console unit test interface.
Definition console_unit_test.hpp:23
static void ends_with(const xtd::string &item, const xtd::string &string, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Validates that string starts with item.
static void starts_with(const xtd::string &item, const xtd::string &string, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Validates that string starts with item.
int32 run() noexcept
Runs all tests in this unit_test object and prints the result.
static void are_equal(const expected_t &expected, const actual_t &actual, const xtd::diagnostics::stack_frame &stack_frame=xtd::diagnostics::stack_frame::current())
Validates that two type are equal.
Definition valid.hpp:41
#define test_method_(method_name)
Add test method to class test.
Definition test_method_attribute.hpp:72
@ s
The S key.
Definition console_key.hpp:124
The tunit namespace contains a unit test library.
Definition abort_error.hpp:10
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8