| 27 | } |
| 28 | |
| 29 | std::string PrintJavaScriptEngineType::operator()(const testing::TestParamInfo<JavaScriptEngineTestCase>& info) const { |
| 30 | auto str = std::string(snap::valdi_core::to_string(toJSEngineType(info.param))); |
| 31 | |
| 32 | if (isWithTSN(info.param)) { |
| 33 | str += "WithTSN"; |
| 34 | } |
| 35 | |
| 36 | return str; |
| 37 | } |
| 38 | |
| 39 | bool JSBridgeTestFixture::isHermes() const { |
| 40 | return GetParam() == JavaScriptEngineTestCase::Hermes; |
nothing calls this directly
no test coverage detected