| 48 | YGConfigRef config; |
| 49 | |
| 50 | void SetUp() override { |
| 51 | config = YGConfigNew(); |
| 52 | YGConfigSetExperimentalFeatureEnabled( |
| 53 | config, YGExperimentalFeatureWebFlexBasis, true); |
| 54 | YGConfigSetExperimentalFeatureEnabled( |
| 55 | config, YGExperimentalFeatureFixFlexBasisFitContent, true); |
| 56 | YGConfigSetPointScaleFactor(config, 3.0f); |
| 57 | g_measureRecords.clear(); |
| 58 | } |
| 59 | |
| 60 | void TearDown() override { YGConfigFree(config); } |
| 61 | YGNodeRef makeNode() { return YGNodeNewWithConfig(config); } |
nothing calls this directly
no test coverage detected