<!-- description --> @brief Main function for this unit test. If a call to bsl::ut_check() fails the application will fast fail. If all calls to bsl::ut_check() pass, this function will successfully return with bsl::exit_success. <!-- inputs/outputs --> @return Always returns bsl::exit_success.
| 53 | /// @return Always returns bsl::exit_success. |
| 54 | /// |
| 55 | [[nodiscard]] auto |
| 56 | main() noexcept -> bsl::exit_code |
| 57 | { |
| 58 | bsl::enable_color(); |
| 59 | |
| 60 | static_assert(example::tests() == bsl::ut_success()); |
| 61 | return example::tests(); |
| 62 | } |