assertisgreaterorequal

September 14, 2025 ยท View on GitHub

Shows how to use xtd::tunit::assert::is_greater_or_equal method.

Sources

Build and run

Open "Command Prompt" or "Terminal". Navigate to the folder that contains the project and type the following:

xtdc run

Output

Start 3 tests from 1 test case
Run tests:
  SUCCEED unit_tests::test.test_case_succeed1 (0 ms total)
  SUCCEED unit_tests::test.test_case_succeed2 (0 ms total)
  FAILED  unit_tests::test.test_case_failed (0 ms total)
    Expected: greater than or equal to 48
    But was:  24
    Stack Trace: in |---OMITTED---|/assert_is_greater_or_equal.cpp:18

Test results:
  SUCCEED 2 tests.
  FAILED  1 test.
End 3 tests from 1 test case ran. (0 ms total)