Variable pretty_print_eclass_scheme_and_level

Variable Documentation

auto pretty_print_eclass_scheme_and_level = [] (const testing::TestParamInfo<std::tuple<std::tuple<int, t8_eclass_t>, int>> &info) {std::string scheme = t8_scheme_to_string[std::get<0> (std::get<0> (info.param))];std::string eclass =t8_eclass_to_string[std::get<1> (std::get<0> (info.param))];std::string level = std::string ("_level_") + std::to_string (std::get<1> (info.param));return scheme + "_" + eclass + level;}

Define a lambda to beautify gtest output for tuples <<scheme, eclass>, level>.

This will set the correct level and cmesh name as part of the test case name.