<!-- description --> @brief Used to execute the actual checks. We put the checks in this function so that we can validate the tests both at compile-time and at run-time. If a bsl::ut_check fails, the tests will either fail fast at run-time, or will produce a compile-time error. <!-- inputs/outputs --> @return Always returns bsl::exit_success.
| 38 | /// @return Always returns bsl::exit_success. |
| 39 | /// |
| 40 | [[nodiscard]] constexpr auto |
| 41 | tests() noexcept -> bsl::exit_code |
| 42 | { |
| 43 | return bsl::ut_success(); |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /// <!-- description --> |