private:
Framework();
~Framework() = default;
Framework(const Framework &) = delete;
Framework &operator=(const Framework &) = delete;
void run_test(const TestInfo &info, TestCaseFactory &test_factory);
std::map<TestResult::Status, int> count_test_results() const;
/** Returns the current test suite name.
*
* @
warning Cannot be used at execution time to get the test suite of the
* currently executed test case. It can only be used for registering test
* cases.
*
* @
return Name of the current test suite.
*/
Chrome 也可以,随便复制了一段
https://cs.android.com/android/platform/superproject/main/+/main:external/ComputeLibrary/tests/framework/Framework.h;l=326