Problem
The functional test framework’s assert_greater_than and assert_greater_than_or_equal helper names are verbose, discouraging their use despite providing better error messages for debugging intermittent failures.
They’re also using a different nomenclature for comparison than what we’re used to on C++ side.
Fix
Rename them to assert_gt and assert_ge via a scripted diff to align with the C++ BOOST_CHECK_GT/BOOST_CHECK_GE naming.
Discussed in #34328 (review)